diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-05-20 16:27:43 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-05-20 16:27:43 +0100 |
commit | c10a9883122d6d3efeb24784a7c76ae004dc2d83 (patch) | |
tree | 7c258000e835aa777b5f08bf72bd674d6a9e2157 | |
parent | a5af0b25926a6b05eb4dd0bd6ffbf95600433e73 (diff) |
italic fonts in vim terminal
-rw-r--r-- | nvimrc | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -70,6 +70,7 @@ let g:ctrlp_open_new_file = 't' let g:ctrlp_show_hidden = 1 let g:ctrlp_user_command = ['.git/', 'git --git-dir=%s/.git ls-files -oc --exclude-standard'] let g:ctrlp_working_path_mode = 'r' +nnoremap <a-p> :CtrlPMRUFiles<cr> let g:syntastic_cpp_compiler = "g++" let g:syntastic_cpp_compiler_options = "-std=c++11 -Wall -Wextra -Wpedantic" @@ -144,9 +145,13 @@ set encoding=utf-8 set mouse=a set clipboard=unnamedplus set lazyredraw +set hidden " Colorscheme try | colorscheme solarized | catch | endtry +highlight Comment cterm=italic +set t_ZH=[3m +set t_ZR=[23m "" Maps @@ -228,11 +233,10 @@ nnoremap <C-_> :b term<cr>i inoremap <C-_> <Esc><C-^>i "" Restore cursor position -augroup cursorPosition - au! +augroup autocommands + autocmd BufWritePost *.cpp Neomake! autocmd BufReadPost * \ if line("'\"") > 1 && line("'\"") <= line("$") | \ exe "normal! g`\"" | \ endif - autocmd! BufWritePost *.cpp Neomake! augroup END |