Skip to content

Instantly share code, notes, and snippets.

@airtonzanon
Last active July 12, 2023 12:59
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/fae437d4b0808d5b9946a25945e9fc07 to your computer and use it in GitHub Desktop.
Save airtonzanon/fae437d4b0808d5b9946a25945e9fc07 to your computer and use it in GitHub Desktop.
~/.config/nvim/
call plug#begin()
Plug 'ctrlpvim/ctrlp.vim'
Plug 'mkitt/tabline.vim'
Plug 'arcticicestudio/nord-vim'
Plug 'terryma/vim-multiple-cursors'
Plug 'wakatime/vim-wakatime'
call plug#end()
colorscheme nord
"+Pale Green 1+
"#87ffaf
hi Comment ctermfg=121
hi xmlCdataStart ctermfg=121
hi LspCodeLens ctermfg=121
set number
set spelllang=en
set spell
set listchars=eol:$,space:-,tab:>#,trail:~
nmap <F5> :set list! list?<cr>
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