Advertisement
metanarrative

neovim conf

Nov 24th, 2024
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.52 KB | Source Code | 0 0
  1. call plug#begin()
  2.  
  3. " List your plugins here
  4.  
  5. Plug 'junegunn/seoul256.vim'
  6. Plug 'tpope/vim-sensible'
  7.  
  8. Plug 'mhinz/vim-startify'
  9.  
  10. Plug 'nathanaelkane/vim-indent-guides'
  11. let g:indent_guides_enable_on_vim_startup = 1
  12.  
  13. Plug 'neoclide/coc.nvim', {'branch': 'release'}
  14.  
  15. Plug 'preservim/nerdtree'
  16. Plug 'Xuyuanp/nerdtree-git-plugin'
  17. Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
  18. Plug 'ryanoasis/vim-devicons'
  19.  
  20. call plug#end()
  21.  
  22. silent! colorscheme seoul256
  23. let g:seoul256_background = 233
  24. colo seoul256
  25. set background=dark
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement