summaryrefslogtreecommitdiff
path: root/pkgs/vim
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-07-10 23:07:22 +0200
committerAdrian Kummerlaender2018-07-10 23:08:04 +0200
commitfcd088fd99e41240515d010e07e4a213e67303af (patch)
treecbb0a1af3082aacfe40535fb502a67463b6132ea /pkgs/vim
parent015bd50385c9d5435024d0f0afb128941208f198 (diff)
downloadnixos_system-fcd088fd99e41240515d010e07e4a213e67303af.tar
nixos_system-fcd088fd99e41240515d010e07e4a213e67303af.tar.gz
nixos_system-fcd088fd99e41240515d010e07e4a213e67303af.tar.bz2
nixos_system-fcd088fd99e41240515d010e07e4a213e67303af.tar.lz
nixos_system-fcd088fd99e41240515d010e07e4a213e67303af.tar.xz
nixos_system-fcd088fd99e41240515d010e07e4a213e67303af.tar.zst
nixos_system-fcd088fd99e41240515d010e07e4a213e67303af.zip
Add vim-far, remove ack-vim from Vim plugin selection
Diffstat (limited to 'pkgs/vim')
-rw-r--r--pkgs/vim/conf/rc.vim2
-rw-r--r--pkgs/vim/custom.nix2
-rw-r--r--pkgs/vim/plugins.nix8
3 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/vim/conf/rc.vim b/pkgs/vim/conf/rc.vim
index 4aee84e..3b8f9cb 100644
--- a/pkgs/vim/conf/rc.vim
+++ b/pkgs/vim/conf/rc.vim
@@ -117,8 +117,6 @@ let g:ctrlp_custom_ignore = {
\ 'file': '\.o$\|\.d$'
\ }
-let g:ackprg = 'ag --vimgrep'
-
let g:undotree_SetFocusWhenToggle = 1
let g:localvimrc_sandbox = 0
diff --git a/pkgs/vim/custom.nix b/pkgs/vim/custom.nix
index d554443..3d41861 100644
--- a/pkgs/vim/custom.nix
+++ b/pkgs/vim/custom.nix
@@ -11,7 +11,7 @@ in
{ names = [
"ctrlp"
"goyo"
- "ack-vim"
+ "vim-far"
"fugitive"
"surround"
"vim-unimpaired"
diff --git a/pkgs/vim/plugins.nix b/pkgs/vim/plugins.nix
index 654f63a..5088e74 100644
--- a/pkgs/vim/plugins.nix
+++ b/pkgs/vim/plugins.nix
@@ -43,6 +43,14 @@ in {
sha256 = "0r0j8l0sm3xgb3hgmf0zm48mgj97nlkspg3jgv817nhwsl8pyc44";
};
};
+ "vim-far" = buildVimPlugin {
+ name = "vim-far";
+ src = fetchgit {
+ url = "https://github.com/brooth/far.vim.git";
+ rev = "5f8016e1df98b1f806e6347728dc012ae59579ab";
+ sha256 = "15pcsd039srfvrj2a6f3ns8zh13vrbdx93pcyxzxd8i0vidshkmb";
+ };
+ };
"vim-color-akr" = buildVimPlugin {
name = "vim-color-akr";
src = ./conf/vim-color-akr;