Skip to content

Instantly share code, notes, and snippets.

@Callisto13
Last active April 10, 2020 13:11
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 Callisto13/dc6448d5c6606a18be6ad79b9a22fc07 to your computer and use it in GitHub Desktop.
Save Callisto13/dc6448d5c6606a18be6ad79b9a22fc07 to your computer and use it in GitHub Desktop.
" to use this .vimrc add the following line at
" the bottom of ~/.config/nvim/init.vim
"
" silent source ~/.vimrc
set nowrap
set noswapfile
set background=dark
set colorcolumn=80
colorscheme hybrid
let g:airline_theme='hybrid'
hi clear SpellBad
hi clear SpellCap
hi clear SpellRare
hi clear SpellLocal
hi SpellBad cterm=underline
hi SpellBad gui=undercurl
let g:ale_lint_on_text_changed = 'never'
let g:ale_lint_on_insert_leave = 0
let g:ale_lint_on_enter = 1
let g:ale_lint_on_save = 1
let g:ale_virtualtext_prefix = ' >> '
let NERDTreeShowHidden=1
nnoremap ,, <c-^>
nnoremap <silent> ,b :FZFBuffers<cr>
nnoremap <Tab> :nohl<cr>
imap <C-a> <ESC>^i
imap <C-e> <ESC>$a
nmap ,. gc$
vmap ,. gc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment