hmmm pretty colourz

This commit is contained in:
Felix Van der Jeugt 2015-05-04 20:23:46 +02:00
parent bbace2976d
commit a3ec83cbdf
3 changed files with 219 additions and 3 deletions

View file

@ -19,6 +19,7 @@ Plugin 'scrooloose/nerdtree'
Plugin 'Shougo/vimproc.vim'
Plugin 'tpope/vim-markdown'
Plugin 'altercation/vim-colors-solarized'
Plugin 'chriskempson/base16-vim'
Plugin 'Valloric/YouCompleteMe'
Plugin 'junegunn/vim-easy-align'
@ -56,15 +57,19 @@ let g:solarized_termcolors=256
let g:solarized_contrast="normal"
let g:solarized_underline=0
let g:solarized_termtrans=1
syntax enable
set background=dark
colorscheme solarized
" Loaing base16
let base16colorspace=256
" }}}
" General Options {{{
" ================================================================== "
syntax enable
set background=dark
colorscheme base16-3024
set number " line numbers on the right side
set showcmd " show the commands while typing
set splitright " open new splits on the right
@ -163,6 +168,18 @@ endfunction
" }}}
" Shell {{{
" ------------------------------------------------------------------ "
autocmd FileType sh call ShellHook()
function ShellHook()
" Execute in subshell
noremap <C-i> :!bash ./%<CR>
endfunction
" }}}
" C {{{
" ------------------------------------------------------------------ "