Fix ctrl-p in Git

This commit is contained in:
Greg Hellings
2024-03-28 09:36:46 -05:00
committed by greg-compass
parent 173b24844d
commit d5b2f46a55
3 changed files with 4 additions and 11 deletions
+2 -4
View File
@@ -77,6 +77,7 @@ in
"<C-k>" = ''"<C-w>k<C-w><CR>"'';
"<C-h>" = ''"<C-w>h<C-w><CR>"'';
"<C-l>" = ''"<C-w>l<C-w><CR>"'';
"<C-o>" = ''":GFiles?<CR>"'';
};
};
plugins = {
@@ -88,7 +89,7 @@ in
fugitive.enable = true;
notify.enable = true;
};
extraConfigLua = builtins.readFile ./vim/extra.lua;
extraConfigLua = builtins.replaceStrings [ "@git@" ] [ "${pkgs.git}/bin/git" ] (builtins.readFile ./vim/extra.lua);
extraConfigVim = builtins.readFile ./vim/extra.vimrc;
extraPlugins = with pkgs.vimPlugins; [
bufexplorer
@@ -97,14 +98,11 @@ in
nvim-cmp
packer-nvim
#jedi-vim
context-vim
direnv-vim
fzf-vim
vim-flake8
vim-indent-guides
vim-rooter
vim-xonsh
];
viAlias = true;