update keybinds
This commit is contained in:
parent
7a8dc1eba0
commit
f29602df02
1 changed files with 36 additions and 0 deletions
|
@ -29,6 +29,42 @@
|
||||||
termguicolors = true;
|
termguicolors = true;
|
||||||
updatetime = 100;
|
updatetime = 100;
|
||||||
wrap = true;
|
wrap = true;
|
||||||
|
splitright = true;
|
||||||
|
splitbelow = true;
|
||||||
|
};
|
||||||
|
maps = {
|
||||||
|
normal = {
|
||||||
|
"<C-a>" = {
|
||||||
|
action = ":bp<Return>";
|
||||||
|
};
|
||||||
|
"<C-d>" = {
|
||||||
|
action = ":bn<Return>";
|
||||||
|
};
|
||||||
|
"<C-h>" = {
|
||||||
|
silent = true;
|
||||||
|
action = ":noh<Return>";
|
||||||
|
};
|
||||||
|
"<leader>1" = {
|
||||||
|
silent = true;
|
||||||
|
action = ":NvimTreeToggle<Return>";
|
||||||
|
};
|
||||||
|
"<leader>`" = {
|
||||||
|
silent = true;
|
||||||
|
action = ":split term://zsh<Return>";
|
||||||
|
};
|
||||||
|
"<leader>ff" = {
|
||||||
|
silent = true;
|
||||||
|
action = "<cmd>Telescope find_files<cr>";
|
||||||
|
};
|
||||||
|
"<leader>fg" = {
|
||||||
|
silent = true;
|
||||||
|
action = "<cmd>Telescope live_grep<cr>";
|
||||||
|
};
|
||||||
|
"<leader>fb" = {
|
||||||
|
silent = true;
|
||||||
|
action = "<cmd>Telescope buffers<cr>";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
extraPlugins = with pkgs.vimPlugins; [ dracula-nvim git-blame-nvim ];
|
extraPlugins = with pkgs.vimPlugins; [ dracula-nvim git-blame-nvim ];
|
||||||
colorscheme = "dracula";
|
colorscheme = "dracula";
|
||||||
|
|
Loading…
Reference in a new issue