setting wsl neovim configurations
This commit is contained in:
parent
8ce8b0ee8a
commit
fedb596c8c
3 changed files with 65 additions and 157 deletions
17
nixos/neovim.nix
Normal file
17
nixos/neovim.nix
Normal 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:»
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue