deol nvim
deol nvim from Pastebin
Deol nvim Pastebin
" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')
" Networking syntax
Plug 'momota/cisco.vim'
Plug 'momota/junos.vim'
" Themes
Plug 'morhetz/gruvbox'
call plug#end()
" Use fd as escape
:imap fd
" set the backspace to delete normally
set backspace=indent,eol,start
" Colorscheme configuration
colorscheme gruvbox
set background=dark
let g:gruvbox_contrast_dark = 'hard'
" map escape key to leave terminal mode with deol
:tnoremap