Unified init.vim and added custom vim theme

This commit is contained in:
Thomas FORGIONE 2016-10-15 12:41:13 +02:00
parent 52c9e0bc04
commit 9ec50004c1
2 changed files with 16 additions and 11 deletions

View File

@ -34,6 +34,8 @@ Plug 'hdima/python-syntax'
Plug 'tpope/vim-fugitive' Plug 'tpope/vim-fugitive'
" Typescript-doc " Typescript-doc
Plug 'https://gogs.tforgione.fr/tforgione/typescript-doc.git' Plug 'https://gogs.tforgione.fr/tforgione/typescript-doc.git'
" My colorscheme
Plug 'https://gogs.tforgione.fr/tforgione/peach'
" Add plugins to &runtimepath " Add plugins to &runtimepath
call plug#end() call plug#end()
" }}} " }}}
@ -92,7 +94,7 @@ endif
" COLOR #############################################################{{{ " COLOR #############################################################{{{
set background=dark " use dark background set background=dark " use dark background
syntax enable " enable syntax processing syntax enable " enable syntax processing
colorscheme mypeachpuff " awesome colorscheme colorscheme peach " awesome colorscheme
" }}} " }}}
" INDENTATION #######################################################{{{ " INDENTATION #######################################################{{{

23
vimrc
View File

@ -17,12 +17,14 @@ Plugin 'othree/html5.vim'
Plugin 'suan/vim-instant-markdown' Plugin 'suan/vim-instant-markdown'
" YouCompleteMe : best vim completer ever " YouCompleteMe : best vim completer ever
Plugin 'Valloric/YouCompleteMe' Plugin 'Valloric/YouCompleteMe'
" Generate doc for typescript functions
Plugin 'https://gogs.tforgione.fr/tforgione/typescript-doc.git'
" Coloration for javascript " Coloration for javascript
Plugin 'jelera/vim-javascript-syntax' Plugin 'jelera/vim-javascript-syntax'
" Coloration for typescript " Coloration for typescript
Plugin 'leafgarland/typescript-vim' Plugin 'leafgarland/typescript-vim'
" Generate doc for typescript functions
Plugin 'https://gogs.tforgione.fr/tforgione/typescript-doc.git'
" My colorscheme
Plugin 'https://gogs.tforgione.fr/tforgione/peach'
call vundle#end() " required call vundle#end() " required
filetype plugin indent on " required filetype plugin indent on " required
@ -31,14 +33,6 @@ filetype plugin indent on " required
" syntax on " syntax on
" Highlight bad spaces (not working...) " Highlight bad spaces (not working...)
" highlight BadWhitespace ctermbg=red guibg=red
" match BadWhitespace / \| \+\t/
" }}}
" COLOR #############################################################{{{
set background=dark
syntax enable
colorscheme peachpuff
" }}} " }}}
" INDENTATION #######################################################{{{ " INDENTATION #######################################################{{{
@ -78,6 +72,14 @@ let g:airline_theme='dark'
set t_Co=256 set t_Co=256
" }}} " }}}
" COLOR #############################################################{{{
set background=dark
syntax enable
colorscheme peach
highlight BadWhitespace ctermbg=red guibg=red
match BadWhitespace / \| \+\t/
" }}}
" SEARCHING #########################################################{{{ " SEARCHING #########################################################{{{
set title set title
set showmatch set showmatch
@ -135,3 +137,4 @@ 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> 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> vnoremap <silent><F11> :vs \| :YcmCompleter GoTo<CR> \| <C-w><C-x><C-w><C-w>
" }}} " }}}