about summary refs log tree commit diff
path: root/modules/user/devhell/programs/vim/default.nix
blob: e94883f7e15574643aa67de6307289197cb8f2cb (plain) (blame)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{ pkgs, lib, config, ... }:

let
  cfg = config.vuizvui.user.devhell.programs.vim;

  customVim = pkgs.vim_configurable.customize {
    name = "vim";
    vimrcConfig.packages.myplugins = with pkgs.vimPlugins; {
      start = [
        ale
        awesome-vim-colorschemes
        delimitMate
        dracula-vim
        goyo-vim
        i3config-vim
        indentLine
        lightline-vim
        limelight-vim
        sleuth
        tabular
        vim-lastplace
        vim-nix
        vim-signify
      ];
      opt = [ ];
    };
    vimrcConfig.customRC = ''
      set nocompatible
      set showcmd
      set showmatch
      set ignorecase
      set smartcase
      set incsearch
      set modeline
      set smarttab
      set expandtab
      set smartindent
      set ruler
      set tabstop=4
      set softtabstop=4
      set shiftwidth=4
      set textwidth=79
      set background=dark
      set history=500
      set backspace=indent,eol,start
      set nu
      set cursorline
      set laststatus=2
      set signcolumn=number
      set timeout timeoutlen=5000 ttimeoutlen=100

      filetype plugin indent on
      colorscheme tender

      " signify Settings
      set updatetime=100

      " indentLine Settings
      let g:indentLine_char_list = ['|', '¦', '┆', '┊']
      let g:indentLine_setColors=1
      let g:indentLine_fileTypeExclude=['help', 'main', 'vimfiler', 'json']
      let g:better_whitespace_filetypes_blacklist = ['diff', 'gitcommit',
      \ 'help', 'markdown', 'leaderGuide']

      " goyo Settings
      autocmd! User GoyoEnter Limelight
      autocmd! User GoyoLeave Limelight!

      " lightline Settings
      let g:lightline = {'colorscheme': 'deus'}
      set noshowmode
    '';
  };

in {
  options.vuizvui.user.devhell.programs.vim = {
    enable = lib.mkEnableOption "devhell's Vim";
  };

  config = lib.mkIf cfg.enable {
    environment.variables.EDITOR = "vim";
    environment.systemPackages = [ customVim ];
  };
}