Advertisement
Guest User

Untitled

a guest
Feb 12th, 2020
1,132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.59 KB | None | 0 0
  1. " Specify a directory for plugins
  2. " - For Neovim: ~/.local/share/nvim/plugged
  3. " - Avoid using standard Vim directory names like 'plugin'
  4. call plug#begin('~/.vim/plugged')
  5.  
  6. " Networking syntax
  7. Plug 'momota/cisco.vim'
  8. Plug 'momota/junos.vim'
  9.  
  10. " Themes
  11. Plug 'morhetz/gruvbox'
  12.  
  13. call plug#end()
  14.  
  15. " Use fd as escape
  16. :imap fd <Esc>
  17.  
  18. " set the backspace to delete normally
  19. set backspace=indent,eol,start
  20.  
  21. " Colorscheme configuration
  22. colorscheme gruvbox
  23. set background=dark
  24. let g:gruvbox_contrast_dark = 'hard'
  25.  
  26. " map escape key to leave terminal mode with deol
  27. :tnoremap <Esc> <C-\><C-n>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement