2009-11-13 12:00:50 +01:00
|
|
|
"""""""""""""
|
|
|
|
" SHORTCUTS "
|
|
|
|
"""""""""""""
|
|
|
|
" F1 help
|
2015-02-27 16:38:02 +01:00
|
|
|
" F2 open file in a new tab
|
|
|
|
" S-F2 Split and open file
|
2014-04-07 16:00:04 +02:00
|
|
|
" F3 autotags Update
|
|
|
|
" S-F3 autotags Add
|
2009-11-13 12:00:50 +01:00
|
|
|
" F4 open include file
|
2010-09-16 14:49:27 +02:00
|
|
|
" F5 find C symbol
|
2009-11-13 12:00:50 +01:00
|
|
|
" F6 go to definition
|
|
|
|
" F7 go to calls
|
|
|
|
" F8 view tag list
|
|
|
|
" S-F8 build ctags/cscope databases
|
2010-04-26 10:35:32 +02:00
|
|
|
" M-F8 build kernel ctags/cscope databases
|
2015-07-06 14:26:11 +02:00
|
|
|
" F9 Open NerdTree
|
|
|
|
" M-F9 Show diff line
|
2014-04-08 14:26:26 +02:00
|
|
|
" S-F9 Highlight diff line
|
2013-03-04 17:05:25 +01:00
|
|
|
" M-F10 diff tool
|
2014-04-07 16:00:04 +02:00
|
|
|
" F10 folding
|
|
|
|
" S-F10 unfolding
|
2009-11-13 12:00:50 +01:00
|
|
|
" F11 unhighlight search
|
|
|
|
" F12 paste mode
|
|
|
|
" C-left/right switch tab
|
|
|
|
" C-up/down switch window
|
|
|
|
" M-left/right horizontal size
|
|
|
|
" M-up/down vertical size
|
2015-02-27 15:56:40 +01:00
|
|
|
" gc comment/uncomment
|
2015-02-27 16:25:09 +01:00
|
|
|
" C-K indent selection
|
2015-09-02 10:35:23 +02:00
|
|
|
" \-k Set Kernel Coding style
|
2014-08-13 13:53:14 +02:00
|
|
|
" Use snippets with tab e.g : for <tab> (see .vim/bundle/vim-snippets/snippets for available
|
2010-05-04 15:32:13 +02:00
|
|
|
" snippets)
|
2009-11-13 12:00:50 +01:00
|
|
|
|
|
|
|
"""""""""""
|
|
|
|
" GENERAL "
|
|
|
|
"""""""""""
|
|
|
|
" disable vi-compatible mode
|
|
|
|
set nocompatible
|
2016-08-29 18:22:37 +02:00
|
|
|
|
|
|
|
" Switch syntax highlighting on when the terminal has colors or when using the
|
|
|
|
" GUI (which always has colors).
|
|
|
|
if &t_Co > 2 || has("gui_running")
|
|
|
|
" Revert with ":syntax off".
|
|
|
|
syntax on
|
|
|
|
|
|
|
|
" I like highlighting strings inside C comments.
|
|
|
|
" Revert with ":unlet c_comment_strings".
|
|
|
|
let c_comment_strings=1
|
|
|
|
endif
|
|
|
|
|
2015-07-07 15:02:12 +02:00
|
|
|
filetype plugin on
|
2016-08-29 18:22:37 +02:00
|
|
|
" enable file type detection and do language-dependent indenting
|
|
|
|
filetype plugin indent on
|
2015-02-27 15:56:40 +01:00
|
|
|
"set clipboard=unnamed
|
2009-11-13 12:00:50 +01:00
|
|
|
""""""""
|
|
|
|
" SAVE "
|
|
|
|
""""""""
|
|
|
|
" disable backup
|
|
|
|
set nobackup
|
|
|
|
" save before compilation
|
|
|
|
set autowrite
|
2016-08-29 18:22:37 +02:00
|
|
|
" Put these in an autocmd group, so that you can revert them with:
|
|
|
|
" ":augroup vimStartup | au! | augroup END"
|
|
|
|
augroup vimStartup
|
|
|
|
au!
|
|
|
|
|
|
|
|
" When editing a file, always jump to the last known cursor position.
|
|
|
|
" Don't do it when the position is invalid or when inside an event handler
|
|
|
|
" (happens when dropping a file on gvim).
|
|
|
|
autocmd BufReadPost *
|
|
|
|
\ if line("'\"") >= 1 && line("'\"") <= line("$") |
|
|
|
|
\ exe "normal! g`\"" |
|
|
|
|
\ endif
|
|
|
|
|
|
|
|
augroup END
|
|
|
|
|
2009-11-13 12:00:50 +01:00
|
|
|
" command line history
|
2016-08-29 18:22:37 +02:00
|
|
|
set history=200
|
2009-11-13 12:00:50 +01:00
|
|
|
|
2011-12-09 10:28:56 +01:00
|
|
|
" Check that file have not been changed
|
|
|
|
" CursorHold : after cursor move
|
|
|
|
" WinEnter or BufWinEnter
|
|
|
|
au WinEnter * checktime
|
|
|
|
au BufWinEnter * checktime
|
|
|
|
|
2009-11-13 12:00:50 +01:00
|
|
|
"""""""""
|
|
|
|
" INPUT "
|
|
|
|
"""""""""
|
|
|
|
" allow backspacing in insert mode
|
|
|
|
set backspace=indent,eol,start
|
|
|
|
" don't use Ex mode, use Q for formatting
|
|
|
|
map Q gq
|
2015-12-07 12:05:07 +01:00
|
|
|
" Enable mouse for 'a'll mode
|
2014-02-27 17:24:24 +01:00
|
|
|
set mouse=a
|
2009-11-13 12:00:50 +01:00
|
|
|
" key combination timeout
|
|
|
|
set notimeout
|
|
|
|
"set timeoutlen=4000
|
|
|
|
" set timeout for multicharacter keys codes (like <F1>)
|
|
|
|
set ttimeout
|
|
|
|
" set timeout to tenth of a second (could be increased for slow terminals)
|
|
|
|
set ttimeoutlen=100
|
|
|
|
" key event timeout
|
|
|
|
set updatetime=1000
|
|
|
|
|
|
|
|
"""""""""""
|
|
|
|
" DISPLAY "
|
|
|
|
"""""""""""
|
|
|
|
" highlight the cursor line
|
|
|
|
set cursorline
|
|
|
|
" show the cursor position
|
|
|
|
set ruler
|
|
|
|
" show mode
|
|
|
|
set showmode
|
|
|
|
" display incomplete commands
|
|
|
|
set showcmd
|
|
|
|
" display line number"
|
|
|
|
set number
|
2011-05-26 14:01:52 +02:00
|
|
|
" set status line
|
|
|
|
set statusline=%<%f\ %h%w%m%r%3.(\ %)%{fugitive#statusline()}%=%([%{Tlist_Get_Tagname_By_Line()}]%)%3.(\ %)%-14.(%l,%c%V%)\ %P
|
|
|
|
" always display status line
|
|
|
|
set laststatus=2
|
2016-08-29 18:22:37 +02:00
|
|
|
set showcmd " display incomplete commands
|
|
|
|
set wildmenu " display completion matches in a status line
|
2009-11-13 12:00:50 +01:00
|
|
|
|
2011-06-27 09:52:26 +02:00
|
|
|
" show bad white spaces
|
|
|
|
let c_space_errors = 1
|
|
|
|
let python_space_error_highlight = 1
|
|
|
|
highlight link cSpaceError SpaceError
|
|
|
|
highlight link pythonSpaceError SpaceError
|
|
|
|
highlight SpaceError ctermfg=235 cterm=reverse
|
|
|
|
|
2009-11-13 12:00:50 +01:00
|
|
|
"""""""""""""""
|
|
|
|
" INDENTATION "
|
|
|
|
"""""""""""""""
|
2011-05-26 14:01:52 +02:00
|
|
|
" use tabs at the start of a line, spaces elsewhere
|
2011-07-08 14:57:16 +02:00
|
|
|
set smarttab
|
|
|
|
set smartindent
|
2011-06-27 10:27:18 +02:00
|
|
|
set autoindent
|
2014-03-24 19:27:29 +01:00
|
|
|
"" tab=4
|
|
|
|
"set tabstop=4
|
|
|
|
"set softtabstop=4
|
|
|
|
"set shiftwidth=4
|
|
|
|
" tab=8
|
2014-03-24 17:46:29 +01:00
|
|
|
set tabstop=8
|
|
|
|
set softtabstop=8
|
|
|
|
set shiftwidth=8
|
2009-11-13 12:00:50 +01:00
|
|
|
" real tabs
|
2011-10-20 14:52:04 +02:00
|
|
|
" set noexpandtab
|
2011-05-26 14:01:52 +02:00
|
|
|
|
2009-11-13 12:00:50 +01:00
|
|
|
if has("autocmd")
|
2015-02-27 16:38:02 +01:00
|
|
|
" python
|
|
|
|
" autocmd FileType python set tabstop=4|set shiftwidth=4|set expandtab
|
2016-03-02 18:20:03 +01:00
|
|
|
autocmd Filetype python set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class
|
2016-10-20 09:28:01 +02:00
|
|
|
autocmd Filetype python set tabstop=4
|
2016-03-02 18:20:03 +01:00
|
|
|
autocmd Filetype python set expandtab
|
|
|
|
autocmd Filetype python set shiftwidth=4
|
|
|
|
autocmd Filetype python set softtabstop=4
|
|
|
|
autocmd Filetype python set modeline
|
2016-03-02 17:27:17 +01:00
|
|
|
" Indentation with = for python need autopep8
|
2016-03-02 18:20:03 +01:00
|
|
|
autocmd Filetype python set equalprg=autopep8\ -
|
|
|
|
|
2011-07-08 14:57:16 +02:00
|
|
|
endif
|
2009-11-13 12:00:50 +01:00
|
|
|
|
2011-07-08 14:57:16 +02:00
|
|
|
if has("autocmd")
|
|
|
|
autocmd BufRead,BufNewFile *.iris set ft=python
|
2016-05-23 14:51:21 +02:00
|
|
|
autocmd BufRead,BufNewFile *.ino set tabstop=4
|
|
|
|
autocmd BufRead,BufNewFile *.ino set softtabstop=4
|
|
|
|
autocmd BufRead,BufNewFile *.ino set shiftwidth=4
|
2009-11-13 12:00:50 +01:00
|
|
|
endif
|
2011-05-26 14:01:52 +02:00
|
|
|
|
2011-07-08 14:57:16 +02:00
|
|
|
" vim -b : edit binary using xxd-format!
|
|
|
|
augroup Binary
|
2015-02-27 16:38:02 +01:00
|
|
|
au!
|
|
|
|
au BufReadPre *.bin let &bin=1
|
|
|
|
au BufReadPost *.bin if &bin | %!xxd
|
|
|
|
au BufReadPost *.bin set ft=xxd | endif
|
|
|
|
au BufWritePre *.bin if &bin | %!xxd -r
|
|
|
|
au BufWritePre *.bin endif
|
|
|
|
au BufWritePost *.bin if &bin | %!xxd
|
|
|
|
au BufWritePost *.bin set nomod | endif
|
2011-07-08 14:57:16 +02:00
|
|
|
augroup END
|
|
|
|
|
2011-05-26 14:01:52 +02:00
|
|
|
if has("autocmd")
|
2015-02-27 16:38:02 +01:00
|
|
|
" detect indentation see http://www.freehackers.org/Indent_Finder
|
|
|
|
if has('python')
|
|
|
|
autocmd BufReadPost /* execute system ('python2 ~/.vim/indent_finder/indent_finder.py --vim-output "' . expand('%') . '"' )
|
|
|
|
endif
|
2011-05-26 14:01:52 +02:00
|
|
|
else
|
2015-02-27 16:38:02 +01:00
|
|
|
" auto-indent
|
|
|
|
set autoindent
|
|
|
|
" smart-indent
|
|
|
|
set smartindent
|
|
|
|
" C-indent
|
|
|
|
"set cindent
|
|
|
|
" indent-expr
|
|
|
|
"set indentexpr ""
|
2011-05-26 14:01:52 +02:00
|
|
|
endif
|
2015-02-27 15:45:32 +01:00
|
|
|
|
2015-02-27 16:25:09 +01:00
|
|
|
map <C-K> :pyf ~/.vim/syntax/clang-format.py<CR>
|
|
|
|
imap <C-K> <ESC>:pyf ~/.vim/syntax/clang-format.py<CR>i
|
2015-02-27 15:45:32 +01:00
|
|
|
|
2009-11-13 12:00:50 +01:00
|
|
|
""""""""""
|
|
|
|
" SEARCH "
|
|
|
|
""""""""""
|
2011-07-08 14:57:16 +02:00
|
|
|
|
2009-11-13 12:00:50 +01:00
|
|
|
" highlight search
|
|
|
|
set hlsearch
|
|
|
|
" unhighlight current search
|
|
|
|
map <silent> <F11> :nohlsearch<CR>
|
|
|
|
imap <F11> <ESC><F11>a
|
|
|
|
" highlight search while typing
|
|
|
|
set incsearch
|
2010-04-19 18:48:56 +02:00
|
|
|
" show matching brackets -> key %
|
2009-11-13 12:00:50 +01:00
|
|
|
set showmatch
|
|
|
|
" tenths of a second before blink matching brackets
|
|
|
|
set mat=5
|
|
|
|
" search word and list lines to jump with F3
|
2014-07-18 23:21:55 +02:00
|
|
|
" map <F3> [I:let nr = input("Which one: ") <Bar>execute "normal " . nr ."[\t"<CR>
|
2009-11-13 12:00:50 +01:00
|
|
|
" go to declaration with F5
|
2010-09-16 14:49:27 +02:00
|
|
|
" map <silent> <F5> gd:nohlsearch<CR>
|
|
|
|
" imap <F5> <ESC><F5>i
|
2011-05-26 14:01:52 +02:00
|
|
|
|
2009-11-13 12:00:50 +01:00
|
|
|
" plugin taglist
|
|
|
|
let Tlist_Ctags_Cmd = '/usr/bin/ctags'
|
|
|
|
let Tlist_Process_File_Always = 1
|
|
|
|
let Tlist_Exit_OnlyWindow = 1
|
|
|
|
"let Tlist_Close_On_Select = 1
|
|
|
|
let Tlist_Auto_Highlight_Tag = 1
|
|
|
|
let Tlist_Display_Prototype = 0
|
|
|
|
let Tlist_Display_Tag_Scope = 0
|
|
|
|
let Tlist_Show_One_File = 1
|
|
|
|
let Tlist_Compact_Format = 1
|
2010-09-28 15:43:25 +02:00
|
|
|
let Tlist_Enable_Fold_Column = 0
|
2013-03-04 17:05:25 +01:00
|
|
|
" sort by name or order ?
|
|
|
|
let Tlist_Sort_Type = "name"
|
2009-11-13 12:00:50 +01:00
|
|
|
"let Tlist_File_Fold_Auto_Close = 1
|
|
|
|
let Tlist_Inc_Winwidth = 0
|
|
|
|
"let Tlist_Use_Horiz_Window = 1
|
|
|
|
let Tlist_Use_Right_Window = 1
|
|
|
|
" open/close tag list window with F8
|
2016-10-17 11:32:42 +02:00
|
|
|
"map <silent> <F8> :TlistToggle<CR>
|
|
|
|
nmap <F8> :TagbarToggle<CR>
|
2011-05-26 14:01:52 +02:00
|
|
|
|
2009-11-13 12:00:50 +01:00
|
|
|
" close preview window after a completion
|
|
|
|
if has("autocmd")
|
2015-02-27 16:38:02 +01:00
|
|
|
autocmd CursorMovedI *.{[hc],cpp} if pumvisible() == 0|pclose|endif
|
|
|
|
autocmd InsertLeave *.{[hc],cpp} if pumvisible() == 0|pclose|endif
|
2009-11-13 12:00:50 +01:00
|
|
|
endif
|
|
|
|
|
2011-06-09 14:02:03 +02:00
|
|
|
function! TagInNewTab()
|
2015-02-27 16:38:02 +01:00
|
|
|
let word = expand("<cword>")
|
|
|
|
redir => tagsfiles
|
|
|
|
silent execute 'set tags'
|
|
|
|
redir END
|
|
|
|
tabe
|
|
|
|
execute 'setlocal' . strpart(tagsfiles, 2)
|
|
|
|
execute 'tag ' . word
|
2011-06-09 14:02:03 +02:00
|
|
|
endfunction
|
|
|
|
|
2015-12-07 12:05:58 +01:00
|
|
|
map <S-CR> :call TagInNewTab()<CR>
|
2011-06-09 14:02:03 +02:00
|
|
|
|
2009-11-13 12:00:50 +01:00
|
|
|
"""""""""
|
|
|
|
" PASTE "
|
|
|
|
"""""""""
|
|
|
|
" set/unset paste mode with F12/shift+F12
|
|
|
|
map <F12> :set paste<CR>
|
|
|
|
map <S-F12> :set nopaste<CR>
|
|
|
|
imap <F12> <C-O>:set paste<CR>
|
|
|
|
imap <S-F12> <nop>
|
|
|
|
set pastetoggle=<S-F12>
|
|
|
|
" paste with reindent with Esc prefix
|
|
|
|
nnoremap <Esc>P P'[v']=
|
|
|
|
nnoremap <Esc>p p'[v']=
|
|
|
|
|
|
|
|
""""""""""
|
|
|
|
" WINDOW "
|
|
|
|
""""""""""
|
|
|
|
" create window below or at right of the current one
|
|
|
|
set splitbelow
|
|
|
|
set splitright
|
|
|
|
" if multiple windows
|
|
|
|
if bufwinnr(1)
|
2015-02-27 16:38:02 +01:00
|
|
|
" vertically increase/decrease window size with alt+up/alt+down
|
|
|
|
map <M-Up> <C-W>+
|
|
|
|
map <M-Down> <C-W>-
|
|
|
|
imap <M-Up> <ESC><M-Up>a
|
|
|
|
imap <M-Down> <ESC><M-Down>a
|
|
|
|
" horizontally increase/decrease window size with alt+right/alt+left
|
|
|
|
map <M-Right> <C-W>>
|
|
|
|
map <M-Left> <C-W><
|
|
|
|
imap <M-Right> <ESC><M-Right>a
|
|
|
|
imap <M-Left> <ESC><M-Left>a
|
|
|
|
" switch to next/previous tab with ctrl+right/ctrl+left
|
|
|
|
map <C-Right> gt
|
|
|
|
map <C-Left> gT
|
|
|
|
imap <C-Right> <ESC><C-Right>a
|
|
|
|
imap <C-Left> <ESC><C-Left>a
|
|
|
|
" switch to next/previous window with ctrl+down/ctrl+up
|
|
|
|
map <C-Down> <C-W>w
|
|
|
|
map <C-Up> <C-W>W
|
|
|
|
imap <C-Down> <ESC><C-Down>a
|
|
|
|
imap <C-Up> <ESC><C-Up>a
|
2009-11-13 12:00:50 +01:00
|
|
|
endif
|
|
|
|
" open automatically quickfix window
|
|
|
|
if has("autocmd")
|
|
|
|
autocmd QuickFixCmdPost * cw
|
|
|
|
endif
|
2015-02-27 16:38:02 +01:00
|
|
|
|
2009-11-13 12:00:50 +01:00
|
|
|
" open a file in the same directory as the current file with F2 and split with shift+F2
|
|
|
|
map <F2> :tabe <C-R>=expand("%:h") . "/"<CR>
|
|
|
|
nmap <S-F2> :split <C-R>=expand("%:h") . "/"<CR>
|
|
|
|
|
|
|
|
""""""""
|
|
|
|
" HELP "
|
|
|
|
""""""""
|
|
|
|
" allow embedded man page
|
|
|
|
runtime! ftplugin/man.vim
|
|
|
|
" show vimrc with shift+F1
|
2012-01-31 11:51:02 +01:00
|
|
|
nmap <silent> <S-F1> :tabe ~/.vimrc<CR>gg
|
2014-04-08 14:26:26 +02:00
|
|
|
imap <S-F1> <Esc><S-F1>
|
2009-11-13 12:00:50 +01:00
|
|
|
" show contextual help with F1
|
|
|
|
function Help()
|
2015-02-27 16:38:02 +01:00
|
|
|
try
|
2015-05-29 15:12:09 +02:00
|
|
|
if exists('b:current_syntax') && b:current_syntax == "python"
|
2015-02-27 16:38:02 +01:00
|
|
|
:call ShowPyDoc(expand("<cword>"), 1)
|
|
|
|
else
|
|
|
|
execute "Man " . expand("<cword>")
|
|
|
|
endif
|
|
|
|
catch /:E149:/
|
|
|
|
execute "help " . expand("<cword>")
|
|
|
|
endtry
|
2009-11-13 12:00:50 +01:00
|
|
|
endfunction
|
|
|
|
nmap <silent> <F1> :call Help()<CR>
|
2010-09-21 10:59:10 +02:00
|
|
|
imap <F1> <Esc><F1>
|
2009-11-13 12:00:50 +01:00
|
|
|
" show VIM help with alt+shift+F1
|
|
|
|
nmap <silent> <M-S-F1> :help <C-R>=expand("<cword>")<CR><CR>
|
|
|
|
imap <M-S-F1> <Esc><M-S-F1>
|
|
|
|
|
|
|
|
"""""""""
|
|
|
|
" TOOLS "
|
|
|
|
"""""""""
|
2014-04-07 16:00:04 +02:00
|
|
|
" show current changes with F10
|
2009-11-13 12:00:50 +01:00
|
|
|
command! DiffOrig
|
2015-02-27 16:38:02 +01:00
|
|
|
\ vert new | set bt=nofile | r # | 0d_ | diffthis | wincmd p | diffthis
|
2016-08-29 18:22:37 +02:00
|
|
|
\ | wincmd p | diffthis
|
2013-03-04 17:05:25 +01:00
|
|
|
map <M-F10> :DiffOrig<CR>
|
2016-08-29 18:22:37 +02:00
|
|
|
|
2013-03-04 17:05:25 +01:00
|
|
|
imap <M-F10> <ESC><M-F10>a
|
2009-11-13 12:00:50 +01:00
|
|
|
" show git diff when committing
|
|
|
|
let g:git_diff_spawn_mode = 1
|
|
|
|
if has("autocmd")
|
|
|
|
autocmd BufRead,BufNewFile COMMIT_EDITMSG setf git
|
|
|
|
endif
|
|
|
|
|
2010-09-16 14:49:27 +02:00
|
|
|
" zf#j creates a fold from the cursor down # lines.
|
|
|
|
"zf/string creates a fold from the cursor to string .
|
|
|
|
"zj moves the cursor to the next fold.
|
|
|
|
"zk moves the cursor to the previous fold.
|
|
|
|
"zo opens a fold at the cursor.
|
|
|
|
"zO opens all folds at the cursor.
|
|
|
|
"zm increases the foldlevel by one.
|
|
|
|
"zM closes all open folds.
|
|
|
|
"zr decreases the foldlevel by one.
|
|
|
|
"zR decreases the foldlevel to zero -- all folds will be open.
|
|
|
|
"zd deletes the fold at the cursor.
|
|
|
|
"zE deletes all folds.
|
|
|
|
"[z move to start of open fold.
|
|
|
|
"]z move to end of open fold.
|
|
|
|
|
|
|
|
" fold form this bracket
|
|
|
|
nmap <F10> zfa{<CR><CR>
|
|
|
|
" unfold or use End
|
|
|
|
nmap <S-F10> zo<CR><CR>
|
2010-09-28 15:43:25 +02:00
|
|
|
" Autosave folding
|
|
|
|
"au BufWinLeave * mkview
|
|
|
|
" Autoload folding
|
|
|
|
"au BufWinEnter * silent loadview
|
2009-11-13 12:00:50 +01:00
|
|
|
|
2010-11-30 16:30:39 +01:00
|
|
|
|
2009-11-20 13:49:07 +01:00
|
|
|
""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
"Omni-completion par CTRL-X_CTRL-O
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""
|
2015-07-07 14:06:52 +02:00
|
|
|
set omnifunc=syntaxcomplete#Complete
|
|
|
|
|
2009-11-20 13:49:07 +01:00
|
|
|
" Enable omnicppcompletion
|
2010-04-19 18:48:56 +02:00
|
|
|
let OmniCpp_ShowAccess = 0
|
|
|
|
let OmniCpp_LocalSearchDecl=1
|
|
|
|
let OmniCpp_MayCompleteDot = 1 " autocomplete after .
|
|
|
|
let OmniCpp_MayCompleteArrow = 1 " autocomplete after ->
|
|
|
|
let OmniCpp_MayCompleteScope = 1 " autocomplete after ::
|
2009-11-20 13:49:07 +01:00
|
|
|
set path=.,..,/usr/local/include,/usr/include
|
2010-04-19 18:48:56 +02:00
|
|
|
|
2011-01-27 00:06:07 +01:00
|
|
|
"""""""""""""
|
|
|
|
" Latex "
|
|
|
|
"""""""""""""
|
|
|
|
" package vim-latexsuite
|
|
|
|
" Insert the following line in your ~/.vim/ftplugin/tex.vim file:
|
|
|
|
" imap <buffer> <leader>it <Plug>Tex_InsertItemOnThisLine
|
|
|
|
" compile with \ll
|
|
|
|
set grepprg=grep\ -nH\ $*
|
|
|
|
let g:tex_flavor = "pdflatex"
|
|
|
|
imap <buffer> <leader>it <Plug>Tex_InsertItemOnThisLine
|
|
|
|
let g:Tex_DefaultTargetFormat="pdf"
|
2012-03-20 10:40:56 +01:00
|
|
|
|
2015-12-07 12:05:58 +01:00
|
|
|
if has('gui_running')
|
|
|
|
colorscheme darkblue
|
|
|
|
else
|
|
|
|
colorscheme mycolor
|
|
|
|
endif
|
2014-03-24 17:46:29 +01:00
|
|
|
cnoremap sudow w !sudo tee % >/dev/null
|
2014-04-07 16:29:15 +02:00
|
|
|
|
2014-04-08 14:26:26 +02:00
|
|
|
"""""""""""
|
2015-07-06 14:26:11 +02:00
|
|
|
" NerdTree
|
2014-04-08 14:26:26 +02:00
|
|
|
"""""""""""
|
2015-07-06 14:26:11 +02:00
|
|
|
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif
|
|
|
|
map <F9> :NERDTreeToggle<CR>
|
|
|
|
|
|
|
|
"""""""""""
|
|
|
|
" GitGutter
|
|
|
|
"""""""""""
|
|
|
|
map <M-F9> :GitGutterSignsToggle <CR>
|
2014-04-08 14:26:26 +02:00
|
|
|
map <S-F9> :GitGutterLineHighlightsToggle <CR>
|
|
|
|
|
2015-09-02 10:35:23 +02:00
|
|
|
""""""""""
|
|
|
|
" KernelFormatting
|
|
|
|
""""""""""
|
|
|
|
|
|
|
|
nnoremap <silent> <leader>k :SetLinuxFormatting<cr><cr>
|
|
|
|
|
2015-12-08 15:00:03 +01:00
|
|
|
""""""""""
|
|
|
|
" LocalConfig
|
|
|
|
""""""""""
|
|
|
|
|
|
|
|
if filereadable(expand('~/.vimrc.local'))
|
|
|
|
" Plugins list and settings should be loaded
|
|
|
|
" only once. Load local_settings block
|
|
|
|
let g:local_plugins = 0
|
|
|
|
let g:local_settings = 1
|
|
|
|
source ~/.vimrc.local
|
|
|
|
endif
|
|
|
|
|
2016-06-03 11:02:06 +02:00
|
|
|
""""""""""
|
|
|
|
" W3m
|
|
|
|
""""""""""
|
|
|
|
let g:w3m#external_browser = 'firefox'
|
2016-05-23 14:52:04 +02:00
|
|
|
|
|
|
|
""""""""""
|
|
|
|
" Debug
|
|
|
|
""""""""""
|
|
|
|
|
|
|
|
"Or start vim with -V[VERBOSENUMBER][FILE]
|
|
|
|
function! ToggleVerbose()
|
|
|
|
if !&verbose
|
|
|
|
set verbosefile=~/.log/vim/verbose.log
|
|
|
|
set verbose=15
|
|
|
|
else
|
|
|
|
set verbose=0
|
|
|
|
set verbosefile=
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2014-04-07 16:29:15 +02:00
|
|
|
"""""""""
|
|
|
|
" Plugin"
|
|
|
|
"""""""""
|
|
|
|
"Using vundle
|
|
|
|
"cf. https://github.com/gmarik/Vundle.vim
|
|
|
|
":PluginInstall to install them
|
2014-06-06 11:53:43 +02:00
|
|
|
set rtp+=~/.vim/bundle/Vundle.vim/
|
|
|
|
call vundle#begin()
|
2014-04-07 16:29:15 +02:00
|
|
|
|
|
|
|
" let Vundle manage Vundle, required
|
2015-06-05 16:40:47 +02:00
|
|
|
Plugin 'gmarik/Vundle.vim'
|
2014-04-07 16:29:15 +02:00
|
|
|
|
2015-07-07 14:15:38 +02:00
|
|
|
" Show current modified line
|
2014-04-07 16:29:15 +02:00
|
|
|
Plugin 'airblade/vim-gitgutter'
|
2015-07-07 14:15:38 +02:00
|
|
|
" Communication with git
|
2014-04-07 16:29:15 +02:00
|
|
|
Plugin 'tpope/vim-fugitive'
|
2015-12-15 11:29:21 +01:00
|
|
|
" Support for Gbrowse
|
|
|
|
Plugin 'tpope/vim-rhubarb'
|
2015-07-07 14:15:38 +02:00
|
|
|
" Comment block of code
|
2014-08-13 13:39:55 +02:00
|
|
|
Plugin 'tpope/vim-commentary'
|
2015-12-08 14:59:32 +01:00
|
|
|
" Make terminal vim and tmux work better together.
|
|
|
|
Plugin 'tmux-plugins/vim-tmux-focus-events'
|
2014-08-13 13:39:55 +02:00
|
|
|
" language pack
|
|
|
|
Plugin 'sheerun/vim-polyglot'
|
|
|
|
" color even for terminal without gui...
|
|
|
|
" Plugin 'vim-scripts/CSApprox'
|
2014-04-08 14:26:26 +02:00
|
|
|
" Same as gitgutter but for other cvs
|
|
|
|
"Plugin mhinz/vim-signify
|
2014-04-07 16:29:15 +02:00
|
|
|
|
2015-07-06 13:56:02 +02:00
|
|
|
" echofunc -> what is the current function
|
|
|
|
Plugin 'mbbill/echofunc'
|
2014-08-13 13:39:55 +02:00
|
|
|
|
2015-07-06 14:03:16 +02:00
|
|
|
" What to test some color ?
|
|
|
|
Plugin 'vim-scripts/Colour-Sampler-Pack.git'
|
|
|
|
|
2015-07-06 14:15:29 +02:00
|
|
|
"More VCS Management
|
|
|
|
Plugin 'vim-scripts/vcscommand.vim'
|
|
|
|
|
2014-08-13 13:39:55 +02:00
|
|
|
" More Snippets :
|
2014-08-13 13:48:46 +02:00
|
|
|
Plugin 'tomtom/tlib_vim'
|
|
|
|
Plugin 'MarcWeber/vim-addon-mw-utils'
|
|
|
|
Plugin 'honza/vim-snippets'
|
|
|
|
Plugin 'garbas/vim-snipmate'
|
2014-08-13 13:39:55 +02:00
|
|
|
|
2015-07-06 14:26:11 +02:00
|
|
|
" Filesystem exploration
|
|
|
|
Plugin 'scrooloose/nerdtree'
|
|
|
|
|
2014-06-06 11:53:43 +02:00
|
|
|
" Python completion
|
2015-02-27 15:45:32 +01:00
|
|
|
"Plugin 'klen/python-mode'
|
2014-12-22 16:27:59 +01:00
|
|
|
"" Python Bundle
|
|
|
|
"Plugin 'davidhalter/jedi-vim'
|
|
|
|
"Plugin 'scrooloose/syntastic'
|
|
|
|
"Plugin 'majutsushi/tagbar'
|
|
|
|
"Plugin 'Yggdroot/indentLine'
|
2016-05-10 16:05:44 +02:00
|
|
|
"" Python Code Checking
|
|
|
|
"Plugin 'kevinw/pyflakes-vim'
|
2014-12-22 16:27:59 +01:00
|
|
|
|
2015-07-07 14:06:52 +02:00
|
|
|
" Omni completion for cpp
|
|
|
|
Plugin 'vim-scripts/OmniCppComplete'
|
|
|
|
|
2015-07-07 14:15:38 +02:00
|
|
|
" List current file function
|
2016-03-02 17:32:37 +01:00
|
|
|
" let $GIT_SSL_NO_VERIFY = 'true'
|
|
|
|
Plugin 'gitlab@gitlab.mathux.org:Mathieu/taglist.git'
|
2016-10-17 11:32:42 +02:00
|
|
|
" Tagbar look like a maintened taglist
|
|
|
|
Plugin 'majutsushi/tagbar'
|
2015-07-07 14:15:38 +02:00
|
|
|
|
2014-12-22 16:27:59 +01:00
|
|
|
"Syntax checking
|
|
|
|
Plugin 'scrooloose/syntastic.git'
|
|
|
|
"Completion (need more configuration for python, c# ...)
|
|
|
|
"Plugin 'Valloric/YouCompleteMe'
|
2014-06-06 11:53:43 +02:00
|
|
|
" VimWiki
|
|
|
|
Plugin 'vimwiki/vimwiki'
|
|
|
|
let g:vimwiki_list=[{'path':'~/.vim/vimwiki'}]
|
|
|
|
|
2014-11-16 23:39:34 +01:00
|
|
|
" Align
|
|
|
|
" eg. to align on the "=" do :'<,'>Align =
|
|
|
|
Plugin 'vim-scripts/Align'
|
2015-06-05 16:41:06 +02:00
|
|
|
|
|
|
|
" open file at the given line with the file.txt:20 syntax
|
2016-03-02 17:33:31 +01:00
|
|
|
" But it's screw up the git commit message
|
|
|
|
"Plugin 'bogado/file-line'
|
2015-09-02 10:35:23 +02:00
|
|
|
|
2015-12-07 12:05:07 +01:00
|
|
|
" % match if/then/else/html ...
|
|
|
|
Plugin 'tmhedberg/matchit'
|
|
|
|
|
2015-09-02 10:35:23 +02:00
|
|
|
" Kernel Formatting
|
|
|
|
Plugin 'gregkh/kernel-coding-style.git'
|
2016-06-03 11:02:06 +02:00
|
|
|
|
|
|
|
" Web browsing
|
2016-09-26 13:50:15 +02:00
|
|
|
"Plugin 'yuratomo/w3m.vim'
|
2016-09-01 10:11:55 +02:00
|
|
|
|
|
|
|
" Recognize Key in screen/tmux
|
2016-09-26 13:50:15 +02:00
|
|
|
"Plugin 'drmikehenry/vim-fixkey'
|
2016-10-17 11:35:57 +02:00
|
|
|
|
|
|
|
"Complete delimiters
|
|
|
|
Plugin 'Raimondi/delimitMate.git'
|
2014-06-06 11:53:43 +02:00
|
|
|
call vundle#end()
|