Compare commits

..

No commits in common. "736726f9f3cf09694c15b4be9bbda4314503bed3" and "dffc42cf4adf7f1f722d06231ff6d68dd9f86de2" have entirely different histories.

18
.vimrc
View file

@ -16,8 +16,6 @@ Plugin 'preservim/tagbar'
Plugin 'airblade/vim-gitgutter'
Plugin 'dpelle/vim-Grammalecte'
Plugin 'loremipsum'
Plugin 'mkitt/tabline.vim'
Plugin 'derekwyatt/vim-fswitch'
call vundle#end()
filetype plugin indent on
@ -60,7 +58,7 @@ let NERDTreeMinimalMenu = 1 " Use the minimal menu (m)
let NERDTreeWinPos = "left" " Panel opens on the left side
let NERDTreeWinSize = 31 " Set panel width to 31 columns
nmap <silent> <F2> :NERDTreeToggle<CR>
nmap <F2> :NERDTreeToggle<CR>
""""""""""""""""""""""""""""""""""""""
" Tagbar
@ -73,7 +71,7 @@ let g:tagbar_autoshowtag = 1
" Make panel vertical and place on the right
let g:tagbar_position = 'botright vertical'
" Mapping to open and close the panel
nmap <silent> <F8> :TagbarToggle<CR>
nmap <F8> :TagbarToggle<CR>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Text, tab and indent related
@ -90,7 +88,7 @@ set tabstop=4
set number
set listchars=eol:$,space,tab:▏\ ,trail:_,nbsp:~,extends:>,precedes:<
set listchars=eol:$,space,tab:>-,trail:~,extends:>,precedes:<
set list
set colorcolumn=80
@ -121,13 +119,3 @@ set signcolumn=auto
""""""""""""""""""""""""""""""""""""""
let g:grammalecte_cli_py='~/Grammalecte-fr/grammalecte-cli.py'
""""""""""""""""""""""""""""""""""""""
" FSwitch
""""""""""""""""""""""""""""""""""""""
"au! BufEnter *.c let b:fswitchdst = 'hpp,h'
"au! BufEnter *.h let b:fswitchdst = 'cpp,c'
"nmap <C-Z> :vsplit <bar> :wincmd l <bar> :FSHere<CR>
nmap <silent> <leader>z :FSSplitLeft<CR>