Last active
April 10, 2020 13:11
-
-
Save Callisto13/dc6448d5c6606a18be6ad79b9a22fc07 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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