enable nvim and smaller config changes
This commit is contained in:
parent
7c4778c9c7
commit
c57a02317f
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
imports = # Home Manager Modules
|
imports = # Home Manager Modules
|
||||||
# (import ../modules/editors) ++
|
(import ../modules/editors) ++
|
||||||
(import ../modules/programs) ++
|
(import ../modules/programs) ++
|
||||||
(import ../modules/services) ++
|
(import ../modules/services) ++
|
||||||
(import ../modules/shell);
|
(import ../modules/shell);
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
vimAlias = true;
|
vimAlias = true;
|
||||||
# defaultEditor = true;
|
vimdiffAlias = true;
|
||||||
|
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
|
|
||||||
@ -34,8 +34,7 @@
|
|||||||
indent-blankline-nvim # Indentation lines
|
indent-blankline-nvim # Indentation lines
|
||||||
];
|
];
|
||||||
|
|
||||||
configure = {
|
extraConfig = ''
|
||||||
customRC = ''
|
|
||||||
syntax enable " Syntax highlighting
|
syntax enable " Syntax highlighting
|
||||||
colorscheme srcery " Color scheme text
|
colorscheme srcery " Color scheme text
|
||||||
let g:lightline = {
|
let g:lightline = {
|
||||||
@ -46,8 +45,10 @@
|
|||||||
|
|
||||||
set number " Set numbers
|
set number " Set numbers
|
||||||
nmap <F6> :NERDTreeToggle<CR> " F6 opens NERDTree
|
nmap <F6> :NERDTreeToggle<CR> " F6 opens NERDTree
|
||||||
'';
|
set expandtab
|
||||||
};
|
set shiftwidth=4
|
||||||
|
set tabstop=4
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user