25 lines
456 B
Nix
25 lines
456 B
Nix
{ ... }:
|
|
{
|
|
programs.vim = {
|
|
enable = true;
|
|
settings = {
|
|
background = "dark";
|
|
directory = [
|
|
"~/.local/share/vim/swap//"
|
|
"."
|
|
];
|
|
expandtab = true;
|
|
history = 50;
|
|
ignorecase = true;
|
|
smartcase = true;
|
|
relativenumber = true;
|
|
mouse = "a";
|
|
number = true;
|
|
tabstop = 4;
|
|
shiftwidth = 4;
|
|
};
|
|
extraConfig = ''
|
|
set clipboard=unnamedplus,unnamed
|
|
'';
|
|
};
|
|
}
|