nix/common/dotfiles/vim.nix

21 lines
413 B
Nix
Raw Normal View History

2023-07-01 11:54:47 +02:00
# 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
'';
};