diff options
| author | Daniel Schadt <kingdread@gmx.de> | 2023-05-09 18:16:07 +0200 | 
|---|---|---|
| committer | Daniel Schadt <kingdread@gmx.de> | 2023-05-09 18:31:08 +0200 | 
| commit | 73ae0b17b0e1abef0c40f1cd5edd0c0dcbc2978b (patch) | |
| tree | 39f130ffc2a76f57ac09e8acfffe6a375de6f951 /neovim/.config/nvim | |
| parent | 3c17f06231480080bfe7d47070566e9f1194d8a6 (diff) | |
| download | dotfiles-73ae0b17b0e1abef0c40f1cd5edd0c0dcbc2978b.tar.gz dotfiles-73ae0b17b0e1abef0c40f1cd5edd0c0dcbc2978b.tar.bz2 dotfiles-73ae0b17b0e1abef0c40f1cd5edd0c0dcbc2978b.zip | |
nvim: update config
- printexpr is no more
- add some more good themes
Diffstat (limited to 'neovim/.config/nvim')
| -rw-r--r-- | neovim/.config/nvim/init.vim | 10 | 
1 files changed, 4 insertions, 6 deletions
| diff --git a/neovim/.config/nvim/init.vim b/neovim/.config/nvim/init.vim index 1ad29d6..1f7f8ae 100644 --- a/neovim/.config/nvim/init.vim +++ b/neovim/.config/nvim/init.vim @@ -59,6 +59,10 @@ Plug 'vim-scripts/IndexedSearch'  " Terminal Vim with 256 colors colorscheme  Plug 'patstockwell/vim-monokai-tasty' +" Some more good themes +Plug 'ericbn/vim-solarized' +Plug 'drewtempelmeyer/palenight.vim' +Plug 'nordtheme/vim', {'branch': 'main'}  " Airline  Plug 'vim-airline/vim-airline' @@ -436,10 +440,4 @@ set mouse=a  let g:tex_flavor = "latex"  au BufNewFile,BufRead *.tex,*.latex,*.sty,*.dtx,*.ltx set sw=2 sts=2 -function PrintFile(fname) -   call system("gtklp " . a:fname) -   call delete(a:fname) -   return v:shell_error -endfunction -set printexpr=PrintFile(v:fname_in)  set termguicolors | 
