dotfiles/vimrc

156 lines
4.2 KiB
VimL
Raw Permalink Normal View History

2016-10-15 11:38:15 +02:00
" Pas de compatibilité a VI !
set nocompatible
2016-10-15 12:13:22 +02:00
" PLUGNIS ###########################################################{{{
2016-10-15 11:38:15 +02:00
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" Vundle
Plugin 'VundleVim/Vundle.vim'
2016-10-15 12:13:22 +02:00
" Stylish bar ...
Plugin 'vim-airline/vim-airline'
" ... and its themes
Plugin 'vim-airline/vim-airline-themes'
2016-11-20 10:35:50 +01:00
" Nerd tree
2016-11-25 09:52:12 +01:00
" Plugin 'scrooloose/nerdtree'
2016-10-15 11:38:15 +02:00
" I don't know what this is
Plugin 'othree/html5.vim'
2016-10-15 12:13:22 +02:00
" Vim markdown previewer
Plugin 'suan/vim-instant-markdown'
" YouCompleteMe : best vim completer ever
Plugin 'Valloric/YouCompleteMe'
2016-10-15 12:30:58 +02:00
" Coloration for javascript
Plugin 'jelera/vim-javascript-syntax'
" Coloration for typescript
Plugin 'leafgarland/typescript-vim'
2016-11-16 10:14:52 +01:00
" Coloration for pug (formerly jade)
Plugin 'digitaltoad/vim-pug'
" Generate doc for typescript functions
Plugin 'https://gogs.tforgione.fr/tforgione/typescript-doc.git'
" My colorscheme
Plugin 'https://gogs.tforgione.fr/tforgione/peach'
2017-02-20 11:05:11 +01:00
" Rust
Plugin 'rust-lang/rust.vim'
Plugin 'cespare/vim-toml'
2016-10-15 11:38:15 +02:00
call vundle#end() " required
filetype plugin indent on " required
" Line numbers and syntaxic coloration
" set nu
" syntax on
" Highlight bad spaces (not working...)
" }}}
" INDENTATION #######################################################{{{
set expandtab
set tabstop=4
set shiftwidth=4
set autoindent
" }}}
" UI CONFIG #########################################################{{{
set number
set showcmd
set wildmenu
set lazyredraw
set encoding=utf8
set clipboard=unnamedplus
set updatecount=50
set mouse=a
set ttymouse=sgr
" Espaces insécables grrrr
set list
set listchars=tab:,trail,extends:>,precedes:<,nbsp
" Remove trailing spaces
autocmd BufWritePre * :%s/\s\+$//e
" Compile on F12
2017-06-26 16:42:33 +02:00
nnoremap <silent><F12> :wa \| !make-client.py<CR>
inoremap <silent><F12> <C-O>:wa \|!make-client.py<CR>
vnoremap <silent><F12> :wa \|!make-client.py<CR>
2016-10-15 11:38:15 +02:00
" Escape on F1
map <F1> <Esc>
imap <F1> <Esc>
2016-10-15 12:13:22 +02:00
" vim airline config
set laststatus=2
let g:airline_powerline_fonts = 1
let g:airline#extensions#branch#format = 1
let g:airline_theme='dark'
set t_Co=256
2017-01-10 09:53:59 +01:00
" Set textwidth for latex
autocmd FileType tex set textwidth=79
2016-10-15 11:38:15 +02:00
" }}}
" COLOR #############################################################{{{
set background=dark
syntax enable
colorscheme peach
highlight BadWhitespace ctermbg=red guibg=red
match BadWhitespace / \| \+\t/
" }}}
2016-10-15 11:38:15 +02:00
" SEARCHING #########################################################{{{
set title
set showmatch
set hlsearch
set noincsearch
2017-01-23 15:08:53 +01:00
" }}}
2016-10-15 11:38:15 +02:00
" NERDTREE ##########################################################{{{
let NERDTreeIgnore = ['\.pyc$','__pycache__']
set shell=sh
let g:NERDTreeIndicatorMapCustom = {
2016-10-15 12:13:22 +02:00
\ "Modified" : "✹",
\ "Staged" : "✚",
\ "Untracked" : "✭",
\ "Renamed" : "➜",
\ "Unmerged" : "═",
\ "Deleted" : "✖",
\ "Dirty" : "✗",
\ "Clean" : "✔︎",
\ "Unknown" : "?"
\ }
2016-10-15 11:38:15 +02:00
let g:WebDevIconsNerdTreeGitPluginForceVAlign = 1
" }}}
" BACKUPS ###########################################################{{{
2016-10-21 10:29:31 +02:00
set dir=$HOME/.vim/swp//
autocmd BufWritePost * :silent execute ':w! ' ."$HOME/.vim/backups/" . substitute(escape(substitute(expand('%:p'), "/", "%", "g"), "%"), ' ', '\\ ', 'g')
2016-10-15 11:38:15 +02:00
if exists('+undofile')
set undofile
set undolevels=1000
set undoreload=10000
if exists('+undodir')
set undodir=$HOME/.vim/undo
endif
endif
" }}}
" MARKDOWN PREVIEW ##################################################{{{
let g:markdown_composer_browser = 'firefox'
2016-10-15 12:13:22 +02:00
let g:instant_markdown_autostart = 0
" }}}
" CODE COMPLETION ###################################################{{{
" You complete me configuration file
let g:ycm_global_ycm_extra_conf = '~/.vim/ycm_extra_conf.py'
let g:ycm_confirm_extra_conf = 0
2017-03-09 10:42:58 +01:00
let g:ycm_autoclose_preview_window_after_insertion = 1
2016-10-15 12:13:22 +02:00
2017-02-20 11:05:11 +01:00
" Rust source
let g:ycm_rust_src_path='/opt/rust/src'
2016-10-15 12:13:22 +02:00
" Goto with F11
nnoremap <silent><F10> :YcmCompleter GoTo<CR>
inoremap <silent><F10> <C-O>:YcmCompleter GoTo<CR>
vnoremap <silent><F10> :YcmCompleter GoTo<CR>
nnoremap <silent><F11> :vs \| :YcmCompleter GoTo<CR> \| <C-w><C-x><C-w><C-w>
inoremap <silent><F11> <C-O>:vs \| :YcmCompleter GoTo<CR> \| <C-w><C-x><C-w><C-w>
vnoremap <silent><F11> :vs \| :YcmCompleter GoTo<CR> \| <C-w><C-x><C-w><C-w>
2016-10-15 11:38:15 +02:00
" }}}