vimrc: wgit branch write sudo
This commit is contained in:
parent
881d274080
commit
2ca5df989b
1 changed files with 8 additions and 1 deletions
|
@ -49,6 +49,7 @@ Plugin 'itchyny/vim-haskell-indent'
|
||||||
Plugin 'junegunn/goyo.vim'
|
Plugin 'junegunn/goyo.vim'
|
||||||
Plugin 'vim-airline/vim-airline'
|
Plugin 'vim-airline/vim-airline'
|
||||||
Plugin 'vim-airline/vim-airline-themes'
|
Plugin 'vim-airline/vim-airline-themes'
|
||||||
|
Plugin 'davidhalter/jedi-vim'
|
||||||
|
|
||||||
call vundle#end() " required
|
call vundle#end() " required
|
||||||
filetype plugin indent on " required
|
filetype plugin indent on " required
|
||||||
|
@ -88,9 +89,14 @@ let g:syntastic_ocaml_checkers = ['merlin']
|
||||||
"""" Ocp-indent (OCaml indentation)
|
"""" Ocp-indent (OCaml indentation)
|
||||||
set rtp^=g:opamshare."/ocp-indent/vim"
|
set rtp^=g:opamshare."/ocp-indent/vim"
|
||||||
|
|
||||||
|
""""""""""""""""" Python
|
||||||
|
let g:jedi#goto_definitions_command = "<LocalLeader>l"
|
||||||
|
let g:jedi#completions_enabled = 0
|
||||||
|
|
||||||
""""""""""""""""" Airline
|
""""""""""""""""" Airline
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
let g:airline_powerline_fonts = 1
|
let g:airline_powerline_fonts = 1
|
||||||
|
let g:airline#extensions#tabline#enabled = 1
|
||||||
set noshowmode
|
set noshowmode
|
||||||
|
|
||||||
""""""""""""""""" Trailing whitespaces
|
""""""""""""""""" Trailing whitespaces
|
||||||
|
@ -112,10 +118,11 @@ nnoremap __ :lprev<CR>
|
||||||
nnoremap ++ :lnext<CR>
|
nnoremap ++ :lnext<CR>
|
||||||
nnoremap _+ :ll<CR>
|
nnoremap _+ :ll<CR>
|
||||||
nnoremap <Leader>w :call TrimWhitespace()<CR>
|
nnoremap <Leader>w :call TrimWhitespace()<CR>
|
||||||
nnoremap K <Esc>i<CR><Esc>
|
|
||||||
|
|
||||||
xnoremap <Leader>x <esc>:'<,'>:w !xclip -selection clipboard<CR><esc>
|
xnoremap <Leader>x <esc>:'<,'>:w !xclip -selection clipboard<CR><esc>
|
||||||
|
|
||||||
|
cmap w!! w !sudo tee % > /dev/null
|
||||||
|
|
||||||
set tw=79
|
set tw=79
|
||||||
|
|
||||||
" Disable arrow keys - use hjkl, ffs.
|
" Disable arrow keys - use hjkl, ffs.
|
||||||
|
|
Loading…
Reference in a new issue