Add misc keybindings
This commit is contained in:
parent
f7d0c47d7b
commit
da8e6097f9
1 changed files with 16 additions and 4 deletions
|
@ -8,9 +8,6 @@
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: keybinds
|
|
||||||
# TODO: looks
|
|
||||||
# TODO: options
|
|
||||||
# TODO: completion
|
# TODO: completion
|
||||||
programs.neovim = let
|
programs.neovim = let
|
||||||
leader = ",";
|
leader = ",";
|
||||||
|
@ -49,7 +46,10 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
plugin = lspsaga-nvim;
|
plugin = lspsaga-nvim;
|
||||||
config = "lua require 'lspsaga'.init_lsp_saga()";
|
# TODO: lspsaga keybinds
|
||||||
|
config = ''
|
||||||
|
lua require 'lspsaga'.init_lsp_saga()
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -128,6 +128,18 @@
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
let mapleader = "${leader}"
|
let mapleader = "${leader}"
|
||||||
let g:mapleader = "${leader}"
|
let g:mapleader = "${leader}"
|
||||||
|
|
||||||
|
inoremap kj <esc>
|
||||||
|
|
||||||
|
vnoremap < <gv
|
||||||
|
vnoremap > >gv
|
||||||
|
|
||||||
|
nnoremap <c-h> <c-w>h
|
||||||
|
nnoremap <c-j> <c-w>j
|
||||||
|
nnoremap <c-k> <c-w>k
|
||||||
|
nnoremap <c-l> <c-w>l
|
||||||
|
|
||||||
|
nnoremap <leader>s :w<cr>
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue