summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/default.nix
blob: 0615b7eddc9eac22c70cea02bf17c1761d8b624b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{ pkgs, ... }:

let
  plugins = pkgs.callPackage ./plugins.nix {};

in pkgs.neovim.override {
  vimAlias  = true;
  configure = {
    customRC = builtins.readFile ./asset/rc.vim;

    packages.myVimPackage = with pkgs.vimPlugins // plugins; {
      start = [
      # UI enhancements
        airline
        goyo

      # autocomplete
        fzfWrapper
        fzf-vim
        vim-gutentags

      # load project specific config
        vim-localvimrc

      # colors, syntax highlighting
        vim-color-akr
        vim-polyglot
        vim-addon-nix

      # file, buffer management
        vim-counterpoint
        vim-signature

      # undo history tree
        vim-mundo

      # editing enhancements
        vim-unimpaired
        vim-wordmotion
        vim-autoformat
        vim-sandwich
        tabular
        far
        ultisnips

      # git integration
        vim-gitgutter
        gina
        fugitive

      ];
    };
  };
}