Unified init.vim and added custom vim theme
This commit is contained in:
parent
52c9e0bc04
commit
9ec50004c1
4
init.vim
4
init.vim
|
@ -34,6 +34,8 @@ Plug 'hdima/python-syntax'
|
|||
Plug 'tpope/vim-fugitive'
|
||||
" Typescript-doc
|
||||
Plug 'https://gogs.tforgione.fr/tforgione/typescript-doc.git'
|
||||
" My colorscheme
|
||||
Plug 'https://gogs.tforgione.fr/tforgione/peach'
|
||||
" Add plugins to &runtimepath
|
||||
call plug#end()
|
||||
" }}}
|
||||
|
@ -92,7 +94,7 @@ endif
|
|||
" COLOR #############################################################{{{
|
||||
set background=dark " use dark background
|
||||
syntax enable " enable syntax processing
|
||||
colorscheme mypeachpuff " awesome colorscheme
|
||||
colorscheme peach " awesome colorscheme
|
||||
" }}}
|
||||
|
||||
" INDENTATION #######################################################{{{
|
||||
|
|
23
vimrc
23
vimrc
|
@ -17,12 +17,14 @@ Plugin 'othree/html5.vim'
|
|||
Plugin 'suan/vim-instant-markdown'
|
||||
" YouCompleteMe : best vim completer ever
|
||||
Plugin 'Valloric/YouCompleteMe'
|
||||
" Generate doc for typescript functions
|
||||
Plugin 'https://gogs.tforgione.fr/tforgione/typescript-doc.git'
|
||||
" Coloration for javascript
|
||||
Plugin 'jelera/vim-javascript-syntax'
|
||||
" Coloration for typescript
|
||||
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
|
||||
filetype plugin indent on " required
|
||||
|
||||
|
@ -31,14 +33,6 @@ filetype plugin indent on " required
|
|||
" syntax on
|
||||
|
||||
" Highlight bad spaces (not working...)
|
||||
" highlight BadWhitespace ctermbg=red guibg=red
|
||||
" match BadWhitespace / \| \+\t/
|
||||
" }}}
|
||||
|
||||
" COLOR #############################################################{{{
|
||||
set background=dark
|
||||
syntax enable
|
||||
colorscheme peachpuff
|
||||
" }}}
|
||||
|
||||
" INDENTATION #######################################################{{{
|
||||
|
@ -78,6 +72,14 @@ let g:airline_theme='dark'
|
|||
set t_Co=256
|
||||
" }}}
|
||||
|
||||
" COLOR #############################################################{{{
|
||||
set background=dark
|
||||
syntax enable
|
||||
colorscheme peach
|
||||
highlight BadWhitespace ctermbg=red guibg=red
|
||||
match BadWhitespace / \| \+\t/
|
||||
" }}}
|
||||
|
||||
" SEARCHING #########################################################{{{
|
||||
set title
|
||||
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>
|
||||
vnoremap <silent><F11> :vs \| :YcmCompleter GoTo<CR> \| <C-w><C-x><C-w><C-w>
|
||||
" }}}
|
||||
|
||||
|
|
Loading…
Reference in New Issue