add vim profile
This commit is contained in:
parent
61c60d4450
commit
6f17b6afc7
2 changed files with 21 additions and 0 deletions
|
@ -232,6 +232,7 @@
|
|||
git
|
||||
emacs
|
||||
kitty
|
||||
vim
|
||||
|
||||
# Terminal
|
||||
starship
|
||||
|
|
20
users/profiles/vim.nix
Normal file
20
users/profiles/vim.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ ... }: {
|
||||
programs.vim = {
|
||||
enable = true;
|
||||
settings = {
|
||||
background = "dark";
|
||||
directory = [
|
||||
"."
|
||||
"~/.local/share/vim/swap//"
|
||||
];
|
||||
expandtab = true;
|
||||
history = 50;
|
||||
ignorecase = true;
|
||||
smartcase = true;
|
||||
mouse = "a";
|
||||
number = true;
|
||||
tabstop = 4;
|
||||
shiftwidth = 4;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue