From c10a9883122d6d3efeb24784a7c76ae004dc2d83 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Wed, 20 May 2015 16:27:43 +0100 Subject: italic fonts in vim terminal --- nvimrc | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'nvimrc') diff --git a/nvimrc b/nvimrc index 9602bf4..1b347d5 100644 --- a/nvimrc +++ b/nvimrc @@ -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 :CtrlPMRUFiles 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= +set t_ZR= "" Maps @@ -228,11 +233,10 @@ nnoremap :b termi inoremap 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 -- cgit v1.2.3