.vimrc_vundle
This commit is contained in:
parent
2f9aeb9ddc
commit
04b51bb87c
|
@ -8,9 +8,13 @@
|
||||||
" <~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
|
" <~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
|
||||||
" (_) (_)
|
" (_) (_)
|
||||||
|
|
||||||
|
|
||||||
|
" Vundle https://github.com/VundleVim/Vundle.vim
|
||||||
|
" install with :
|
||||||
|
" git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
||||||
|
" set nocompatible be iMproved, required - Isnt it automatic with .vimrc??
|
||||||
" utf8
|
" utf8
|
||||||
set encoding=utf-8
|
set encoding=utf-8
|
||||||
|
|
||||||
filetype off " required
|
filetype off " required
|
||||||
|
|
||||||
" _\|/_
|
" _\|/_
|
||||||
|
@ -36,11 +40,7 @@ Plugin 'VundleVim/Vundle.vim'
|
||||||
" git
|
" git
|
||||||
Plugin 'tpope/vim-fugitive'
|
Plugin 'tpope/vim-fugitive'
|
||||||
" commentary
|
" commentary
|
||||||
Plugin 'tpope/vim-commentary'
|
Plugin 'commentary.vim'
|
||||||
xmap \\ <Plug>Commentary
|
|
||||||
nmap \\ <Plug>Commentary
|
|
||||||
nmap \\\ <Plug>CommentaryLine
|
|
||||||
nmap \\u <Plug>CommentaryUndo
|
|
||||||
" Plugin 'Syntastic'
|
" Plugin 'Syntastic'
|
||||||
" set statusline+=%#warningmsg#
|
" set statusline+=%#warningmsg#
|
||||||
" set statusline+=%{SyntasticStatuslineFlag()}
|
" set statusline+=%{SyntasticStatuslineFlag()}
|
||||||
|
@ -51,11 +51,25 @@ nmap \\u <Plug>CommentaryUndo
|
||||||
" let g:syntastic_check_on_open = 1
|
" let g:syntastic_check_on_open = 1
|
||||||
" let g:syntastic_check_on_wq = 0
|
" let g:syntastic_check_on_wq = 0
|
||||||
" let g:syntastic_auto_jump = 2
|
" let g:syntastic_auto_jump = 2
|
||||||
|
Plugin 'ctrlpvim/ctrlp.vim'
|
||||||
|
|
||||||
" Plugin 'ctrlpvim/ctrlp.vim'
|
|
||||||
Plugin 'tpope/vim-surround'
|
Plugin 'tpope/vim-surround'
|
||||||
Plugin 'tpope/vim-repeat'
|
Plugin 'tpope/vim-repeat'
|
||||||
|
" ys<target><obj> : ajoute <ojb> autour de <target> (sous le curseur)
|
||||||
|
" ysw" : ajoute des " autour du word
|
||||||
|
" ysW' : ajout des ' autour du WORD
|
||||||
|
" yss{ : ajoute { a la phrase (avec espace)
|
||||||
|
" yss} : ajoute { a la phrase
|
||||||
|
" ySS[ : ajoute [ a la phrase, en indentant + a la ligne
|
||||||
|
"
|
||||||
|
" cs<target><rep> : change <obj> en <rep> dans <t>
|
||||||
|
" cs"' : change les " par des '
|
||||||
|
"
|
||||||
|
" ds<target> : supprime une <target>
|
||||||
|
" ds" : supprime les "
|
||||||
|
"
|
||||||
|
" <target> : w = word, W = WORD, s = sentence, p = paragraph
|
||||||
|
" " ' ( ) [ ] { } < >
|
||||||
|
" t <tag>
|
||||||
|
|
||||||
" unicode characters
|
" unicode characters
|
||||||
" :h unicode-plugin
|
" :h unicode-plugin
|
||||||
|
@ -323,6 +337,7 @@ au FileType sh imap <leader>m <esc>:ShellCheck!<cr>i
|
||||||
" All of your Plugins must be added before the following line
|
" All of your Plugins must be added before the following line
|
||||||
call vundle#end() " required
|
call vundle#end() " required
|
||||||
filetype plugin indent on " required
|
filetype plugin indent on " required
|
||||||
|
|
||||||
" _\|/_
|
" _\|/_
|
||||||
" (o o)
|
" (o o)
|
||||||
" <~~~~~~oOO-{_}-OOo~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
|
" <~~~~~~oOO-{_}-OOo~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
|
||||||
|
@ -331,7 +346,6 @@ filetype plugin indent on " required
|
||||||
" | |
|
" | |
|
||||||
" <~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
|
" <~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
|
||||||
" (_) (_)
|
" (_) (_)
|
||||||
|
|
||||||
" syntax
|
" syntax
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue