setting wsl neovim configurations

This commit is contained in:
DannyDannyDanny 2024-08-11 11:31:44 +00:00
parent 8ce8b0ee8a
commit fedb596c8c
3 changed files with 65 additions and 157 deletions

17
nixos/neovim.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
programs.neovim = {
enable = true;
defaultEditor = true;
configure = {
# colorscheme blue
# colorscheme desert
customRC = ''
colorscheme peachpuff
set listchars=tab:\ ,space:·,nbsp:,trail:,eol:,precedes:«,extends:»
'';
};
};
}