hmmm pretty colourz
This commit is contained in:
parent
bbace2976d
commit
a3ec83cbdf
3 changed files with 219 additions and 3 deletions
23
vim/vimrc
23
vim/vimrc
|
@ -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 {{{
|
||||
" ------------------------------------------------------------------ "
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue