nix/common/dotfiles/vim.nix

31 lines
No EOL
611 B
Nix

{ config, pkgs, ... }: {
# https://nixos.wiki/wiki/Vim
programs.vim = {
enable = true;
plugins = with pkgs.vimPlugins; [
vim-airline
vim-airline-themes
dracula-vim
tabnine-vim
nerdtree
rainbow
];
settings = { ignorecase = true; };
extraConfig = ''
colorscheme dracula
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
set cursorline
AirlineTheme wombat
'';
};
}