summaryrefslogtreecommitdiff
path: root/pkgs/vim/custom.nix
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-09-23 12:27:40 +0200
committerAdrian Kummerlaender2018-09-23 12:27:40 +0200
commit34b73e34e2d6a280264421663c7bce326c68f897 (patch)
tree2a36319ac54965b38f74094673f5f4efcc37e413 /pkgs/vim/custom.nix
parent325e80caaaaa202a71bc1111d3e19a92d99e7ada (diff)
downloadnixos_system-34b73e34e2d6a280264421663c7bce326c68f897.tar
nixos_system-34b73e34e2d6a280264421663c7bce326c68f897.tar.gz
nixos_system-34b73e34e2d6a280264421663c7bce326c68f897.tar.bz2
nixos_system-34b73e34e2d6a280264421663c7bce326c68f897.tar.lz
nixos_system-34b73e34e2d6a280264421663c7bce326c68f897.tar.xz
nixos_system-34b73e34e2d6a280264421663c7bce326c68f897.tar.zst
nixos_system-34b73e34e2d6a280264421663c7bce326c68f897.zip
Restructure host config, derivations
Diffstat (limited to 'pkgs/vim/custom.nix')
-rw-r--r--pkgs/vim/custom.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/pkgs/vim/custom.nix b/pkgs/vim/custom.nix
deleted file mode 100644
index f0150d2..0000000
--- a/pkgs/vim/custom.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ pkgs }:
-
-let
- vimrc = builtins.readFile ./conf/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;
-}