Skip to content

Instantly share code, notes, and snippets.

@airtonzanon
Last active May 27, 2020 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save airtonzanon/b874be14aaf05c1569770d302d453e06 to your computer and use it in GitHub Desktop.
Save airtonzanon/b874be14aaf05c1569770d302d453e06 to your computer and use it in GitHub Desktop.
call plug#begin()
Plug 'ctrlpvim/ctrlp.vim'
Plug 'mkitt/tabline.vim'
Plug 'arcticicestudio/nord-vim'
Plug 'terryma/vim-multiple-cursors'
Plug 'wakatime/vim-wakatime'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'dense-analysis/ale'
call plug#end()
colorscheme nord
set number
nmap <tab> :tabnext<cr>
nmap <S-tab> :tabprevious<cr>
nmap <silent><leader>n :NERDTreeToggle<cr>
nmap <c-j> 5j
nmap <c-k> 5k
map <down> <c-w><down>
map <left> <c-w><left>
map <right> <c-w><right>
map <up> <c-w><up>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment