enable nvim and smaller config changes

This commit is contained in:
Kabbone 2022-10-22 16:31:30 +02:00
parent 7c4778c9c7
commit c57a02317f
2 changed files with 7 additions and 6 deletions

View File

@ -19,7 +19,7 @@
{
imports = # Home Manager Modules
# (import ../modules/editors) ++
(import ../modules/editors) ++
(import ../modules/programs) ++
(import ../modules/services) ++
(import ../modules/shell);

View File

@ -10,7 +10,7 @@
enable = true;
viAlias = true;
vimAlias = true;
# defaultEditor = true;
vimdiffAlias = true;
plugins = with pkgs.vimPlugins; [
@ -34,8 +34,7 @@
indent-blankline-nvim # Indentation lines
];
configure = {
customRC = ''
extraConfig = ''
syntax enable " Syntax highlighting
colorscheme srcery " Color scheme text
let g:lightline = {
@ -46,8 +45,10 @@
set number " Set numbers
nmap <F6> :NERDTreeToggle<CR> " F6 opens NERDTree
'';
};
set expandtab
set shiftwidth=4
set tabstop=4
'';
};
};
}