This commit is contained in:
don philipe
2023-05-17 14:13:54 +02:00

8
.vimrc
View File

@@ -35,6 +35,11 @@ inoremap <expr>> strpart(getline('.'), col('.')-1, 1) == ">" ? "\<Right>" : ">"
"inoremap " ""<Left> "inoremap " ""<Left>
"inoremap ' ''<Left> "inoremap ' ''<Left>
" Tab navigation
nmap <C-t> :tabnew<CR>
nmap <C-h> :tabprev<CR>
nmap <C-l> :tabnext<CR>
" redefine some default colors " redefine some default colors
highlight Search ctermfg=Black highlight Search ctermfg=Black
highlight Comment ctermfg=012 highlight Comment ctermfg=012
@@ -66,6 +71,9 @@ Plug 'vim-airline/vim-airline'
" Git diff in sign column " Git diff in sign column
Plug 'airblade/vim-gitgutter' Plug 'airblade/vim-gitgutter'
" Latex plugin
Plug 'lervag/vimtex'
" Python-mode " Python-mode
Plug 'python-mode/python-mode', { 'for': 'python', 'branch': 'develop' } Plug 'python-mode/python-mode', { 'for': 'python', 'branch': 'develop' }