Compare commits
No commits in common. "2d135b743cf34ee3722c0b46c40a75edc53023a4" and "6c91704f331396d608ff65ecd04dc3a2c90c19d6" have entirely different histories.
2d135b743c
...
6c91704f33
@ -20,8 +20,6 @@
|
|||||||
cmake-format
|
cmake-format
|
||||||
clang-tools
|
clang-tools
|
||||||
rustfmt
|
rustfmt
|
||||||
nixfmt
|
|
||||||
shfmt
|
|
||||||
];
|
];
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
vim-nix
|
vim-nix
|
||||||
@ -40,11 +38,9 @@
|
|||||||
cmp-nvim-lsp
|
cmp-nvim-lsp
|
||||||
(nvim-treesitter.withPlugins (_: pkgs.tree-sitter.allGrammars))
|
(nvim-treesitter.withPlugins (_: pkgs.tree-sitter.allGrammars))
|
||||||
nvim-treesitter-textobjects
|
nvim-treesitter-textobjects
|
||||||
minimap-vim
|
|
||||||
|
|
||||||
pkgs.vimExtraPlugins.leap-nvim
|
pkgs.vimExtraPlugins.leap-nvim
|
||||||
];
|
];
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
" syntax
|
" syntax
|
||||||
syntax enable
|
syntax enable
|
||||||
@ -57,7 +53,7 @@
|
|||||||
set wildmode=longest:full,full
|
set wildmode=longest:full,full
|
||||||
|
|
||||||
" remapping popup menu (command autocompletion)
|
" remapping popup menu (command autocompletion)
|
||||||
cnoremap <expr> <up> pumvisible() ? "<C-p>" : "<up>"
|
cnoremap <expr> <up> pumvisible() ? "<C-p>" : "<up>
|
||||||
cnoremap <expr> <down> pumvisible() ? "<C-n>" : "<down>"
|
cnoremap <expr> <down> pumvisible() ? "<C-n>" : "<down>"
|
||||||
cnoremap <expr> <CR> pumvisible() ? "<C-e>":"<CR>"
|
cnoremap <expr> <CR> pumvisible() ? "<C-e>":"<CR>"
|
||||||
|
|
||||||
@ -84,11 +80,6 @@
|
|||||||
" Enable trimmming of trailing whitespace
|
" Enable trimmming of trailing whitespace
|
||||||
let g:neoformat_basic_format_trim = 1
|
let g:neoformat_basic_format_trim = 1
|
||||||
|
|
||||||
" Config minimap
|
|
||||||
let g:minimap_width = 10
|
|
||||||
let g:minimap_auto_start = 1
|
|
||||||
let g:minimap_auto_start_win_enter = 1
|
|
||||||
|
|
||||||
lua << EOF
|
lua << EOF
|
||||||
|
|
||||||
-- Setup leap-nvim keymappings
|
-- Setup leap-nvim keymappings
|
||||||
|
Loading…
Reference in New Issue
Block a user