Advertisement
guitarplayer616

neovim config

Jul 18th, 2022 (edited)
2,001
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.57 KB | None | 0 0
  1. set nohlsearch
  2. set nowrap
  3. set scrolloff=8
  4. "set colorcolumn=80
  5. set cmdheight=2
  6. set updatetime=50
  7. set shortmess+=c
  8.  
  9. set relativenumber
  10. set nu
  11. set hidden
  12. set noerrorbells
  13. set tabstop=4 softtabstop=4
  14. set shiftwidth=4
  15. set expandtab
  16. set smartindent
  17. set noswapfile
  18. set nobackup
  19. set undodir=~/.vim/undodir
  20. set undofile
  21. set incsearch
  22. set termguicolors
  23. set signcolumn=yes
  24.  
  25. call plug#begin('~/.vim/plugged')
  26. Plug 'nvim-telescope/telescope.nvim'
  27. Plug 'gruvbox-community/gruvbox'
  28. call plug#end()
  29.  
  30. colorscheme gruvbox
  31. highlight Normal guibg=none
  32.  
  33. "let mapleader = " "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement