fix neovim config
This commit is contained in:
parent
281e9a06ee
commit
0091f8389e
@ -10,6 +10,7 @@
|
||||
enable = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
defaultEditor = true;
|
||||
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
|
||||
@ -23,28 +24,29 @@
|
||||
vim-gitgutter # See uncommitted changes of file :GitGutterEnable
|
||||
|
||||
# File Tree
|
||||
nerdtree # File Manager - set in extraConfig to F6
|
||||
nerdtree # File Manager - set in extraConfig to F6
|
||||
|
||||
# Customization
|
||||
wombat256-vim # Color scheme for lightline
|
||||
srcery-vim # Color scheme for text
|
||||
|
||||
lightline-vim # Info bar at bottom
|
||||
indent-blankline-nvim # Indentation lines
|
||||
indent-blankline-nvim # Indentation lines
|
||||
];
|
||||
|
||||
extraConfig = ''
|
||||
syntax enable " Syntax highlighting
|
||||
colorscheme srcery " Color scheme text
|
||||
let g:lightline = {
|
||||
\ 'colorscheme': 'wombat',
|
||||
\ } " Color scheme lightline
|
||||
highlight Comment cterm=italic gui=italic " Comments become italic
|
||||
hi Normal guibg=NONE ctermbg=NONE " Remove background, better for personal theme
|
||||
|
||||
set number " Set numbers
|
||||
nmap <F6> :NERDTreeToggle<CR> " F6 opens NERDTree
|
||||
'';
|
||||
configure = {
|
||||
customRC = ''
|
||||
syntax enable " Syntax highlighting
|
||||
colorscheme srcery " Color scheme text
|
||||
let g:lightline = {
|
||||
\ 'colorscheme': 'wombat',
|
||||
\ } " Color scheme lightline
|
||||
highlight Comment cterm=italic gui=italic " Comments become italic
|
||||
hi Normal guibg=NONE ctermbg=NONE " Remove background, better for personal theme
|
||||
|
||||
set number " Set numbers
|
||||
nmap <F6> :NERDTreeToggle<CR> " F6 opens NERDTree
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user