21 lines
No EOL
413 B
Nix
21 lines
No EOL
413 B
Nix
# https://nixos.wiki/wiki/Vim
|
|
programs.vim = {
|
|
enable = true;
|
|
plugins = with pkgs.vimPlugins; [ vim-airline ];
|
|
settings = { ignorecase = true; };
|
|
extraConfig = ''
|
|
set mouse=a
|
|
set number
|
|
syntax on
|
|
set hlsearch
|
|
set ignorecase
|
|
set smartcase
|
|
set autoindent
|
|
set ruler
|
|
set shiftwidth=2
|
|
set expandtab
|
|
set softtabstop=2
|
|
colorscheme slate
|
|
set cursorline
|
|
'';
|
|
}; |