diff options
author | johannst <*> | 2016-10-13 19:21:17 +0200 |
---|---|---|
committer | johannst <*> | 2016-10-13 19:21:17 +0200 |
commit | 252433fea54c3c76af30d3eca334b78e32027293 (patch) | |
tree | a1a44535b176a1720bd337685fd3d1f2678e4b6d | |
parent | 7e7256d1dc22619373271ff12ff677e3b11067dc (diff) | |
download | dotfiles-252433fea54c3c76af30d3eca334b78e32027293.tar.gz dotfiles-252433fea54c3c76af30d3eca334b78e32027293.zip |
added scons builder in vim
-rw-r--r-- | .gitconfig | 4 | ||||
-rw-r--r-- | .vimrc | 12 | ||||
-rw-r--r-- | README.md | 17 |
3 files changed, 25 insertions, 8 deletions
@@ -9,4 +9,6 @@ [diff] tool = vimdiff [difftool] - prompt = false + prompt = false +[color] + ui = true @@ -36,6 +36,10 @@ set nocompatible " make vim less vi " tagbar let g:tagbar_ctags_bin='~/.vim/bin/ctags' + " CtrlP + let g:ctrlp_buftag_ctags_bin='~/.vim/bin/ctags' + let g:ctrlp_extensions = ['buffertag', 'line', 'changes', 'mixed'] + " omni complete " add tags " set tags+=~/.vim/tags/cpp_tags @@ -53,6 +57,14 @@ set nocompatible " make vim less vi "}}} +function! TriggerSCons(arg_string) + let base_cmd = "scons -u " + let &makeprg=base_cmd.a:arg_string + make +endfunction +" use like :SCons -j20 ... +command! -nargs=1 SCons call TriggerSCons(<f-args>) + " +----------------------------+ " | Color Settings | " +----------------------------+ @@ -2,14 +2,17 @@ # author: johannst - **.vim/colors**: - - solarized: https://github.com/altercation/solarized - - buddy : https://github.com/DrSpatula/vim-buddy - - gruvbox : https://github.com/morhetz/gruvbox - - pride : https://github.com/lyxell/pride.vim - - scheakur : https://github.com/scheakur/vim-scheakur + - solarized: https://github.com/altercation/solarized + - buddy : https://github.com/DrSpatula/vim-buddy + - gruvbox : https://github.com/morhetz/gruvbox + - pride : https://github.com/lyxell/pride.vim + - scheakur : https://github.com/scheakur/vim-scheakur - **.vim/install_vundle.sh**: - - Installs Vim Bundle package manager + - Installs Vim Bundle package manager - **.bashrc/** - - this files should be sourced from within a ~/.bashrc ~/.bash_profile file + - this files should be sourced from within a ~/.bashrc ~/.bash_profile file + +- **.Xresources_solarized** + - https://github.com/solarized/xresources |