summaryrefslogtreecommitdiff
path: root/host/software/pkgs/vim/custom.nix
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-09-26 21:24:55 +0200
committerAdrian Kummerlaender2018-09-26 21:24:55 +0200
commit27770f5438d466a153bba2359d46404494df1152 (patch)
tree8a6ce6ca582201a5bd36784357d22cabb52bfdb6 /host/software/pkgs/vim/custom.nix
parent41445c6ac98ed646dc42087ddc1f46eafa3c71e3 (diff)
downloadnixos_system-27770f5438d466a153bba2359d46404494df1152.tar
nixos_system-27770f5438d466a153bba2359d46404494df1152.tar.gz
nixos_system-27770f5438d466a153bba2359d46404494df1152.tar.bz2
nixos_system-27770f5438d466a153bba2359d46404494df1152.tar.lz
nixos_system-27770f5438d466a153bba2359d46404494df1152.tar.xz
nixos_system-27770f5438d466a153bba2359d46404494df1152.tar.zst
nixos_system-27770f5438d466a153bba2359d46404494df1152.zip
Use pkgs.kummerlaender.eu's vim derivation
Diffstat (limited to 'host/software/pkgs/vim/custom.nix')
-rw-r--r--host/software/pkgs/vim/custom.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/host/software/pkgs/vim/custom.nix b/host/software/pkgs/vim/custom.nix
deleted file mode 100644
index 4719b72..0000000
--- a/host/software/pkgs/vim/custom.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ pkgs }:
-
-let
- vimrc = builtins.readFile ./asset/rc.vim;
- plugins = pkgs.callPackage ./plugins.nix {};
-in
-{
- vam = {
- knownPlugins = pkgs.vimPlugins // plugins;
- pluginDictionaries = [
- { names = [
- # UI enhancements
- "vim-airline"
- "goyo"
- "vim-toggle-ui-elements"
- # load project specific config
- "vim-localvimrc"
- # colors, syntax highlighting
- "vim-color-akr"
- "vim-polyglot"
- "vim-addon-nix"
- # file, buffer management
- "ctrlp"
- "vim-counterpoint"
- "vim-signature"
- # undo history tree
- "vim-mundo"
- # editing enhancements
- "vim-wordmotion"
- "vim-autoformat"
- "surround"
- "vim-unimpaired"
- "vim-far"
- # git integration
- "fugitive"
- "vim-gitgutter"
- "vim-gina"
- ];}
- ];
- };
- customRC = vimrc;
-}