18 lines
283 B
Nix
18 lines
283 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.vim = {
|
|
enable = true;
|
|
plugins = with pkgs.vimPlugins; [ vim-airline ];
|
|
settings = { ignorecase = true; };
|
|
extraConfig = ''
|
|
set sw=2
|
|
set ts=2
|
|
set et
|
|
set smartindent
|
|
set number
|
|
syntax on
|
|
'';
|
|
};
|
|
}
|