diff --git a/.Xresources b/.Xresources index d47eca5..bafbf8c 100644 --- a/.Xresources +++ b/.Xresources @@ -15,7 +15,7 @@ URxvt*scrollWithBuffer: true URxvt*scrollTtyKeypress: true URxvt*secondaryWheel: true -# Dynamic colors +! Dynamic colors urxvt*dynamicColors: on URxvt.urgentOnBell: true @@ -46,7 +46,7 @@ Xft*antialias: true xterm*faceName:xft:Terminus:size=10:antialias=false -#include ".Xresources.d/solarized" +!#include ".Xresources.d/solarized" !! 0: black !*color0: #000000 diff --git a/.vimrc b/.vimrc index 653c098..6a5b520 100644 --- a/.vimrc +++ b/.vimrc @@ -9,8 +9,16 @@ call vundle#begin() Plugin 'gmarik/Vundle.vim' Plugin 'pydave/AsyncCommand' Plugin 'tpope/vim-fugitive' -" Plugin 'Lokaltog/vim-easymotion' -Plugin 'Valloric/YouCompleteMe' + +" Autocomplete +Plugin 'shougo/neocomplete.vim' +" Plugin 'Valloric/YouCompleteMe' +" Plugin 'Shougo/unite.vim' +Plugin 'ervandew/supertab' + +" +Plugin 'terryma/vim-multiple-cursors' +Plugin 'Lokaltog/vim-easymotion' " Ruby/Rails Plugin 'tpope/vim-rails' @@ -20,6 +28,8 @@ Plugin 'tpope/vim-bundler' " Productivity Plugin 'farseer90718/vim-taskwarrior' +Plugin 'majutsushi/tagbar' + Plugin 'L9' " Plugin 'FuzzyFinder' " Plugin 'AutoComplPop' @@ -51,8 +61,6 @@ Plugin 'vim-scripts/vimwiki' Plugin 'ngmy/vim-rubocop' Plugin 'tpope/vim-surround' Plugin 'kien/ctrlp.vim' -Plugin 'Shougo/unite.vim' -Plugin 'ervandew/supertab' Plugin 'mileszs/ack.vim' Plugin 'godlygeek/tabular' Plugin 'nathanaelkane/vim-indent-guides' @@ -103,8 +111,8 @@ let g:nerdtree_tabs_autoclose = 0 imap snipMateNextOrTrigger " YouCompleteMe -let g:ycm_key_list_select_completion = [''] -let g:ycm_key_list_previous_completion = [''] +" let g:ycm_key_list_select_completion = [''] +" let g:ycm_key_list_previous_completion = [''] " Syntastic " let g:syntastic_ruby_checkers = ['mri'] @@ -143,6 +151,7 @@ let g:calendar_focus_today = 1 au BufRead,BufNewFile *.rabl setf ruby au BufRead,BufNewFile *.arb setf ruby au BufRead,BufNewFile *.tag setf coffee " riotjs tags +au BufRead,BufNewFile *.vue setf coffee " riotjs tags " silent! nmap :FufLine " silent! nmap :FufCoverageFile @@ -179,6 +188,9 @@ fun! StripTrailingWhitespaces() call cursor(l, c) endfun +" tagbar +nmap :TagbarToggle + " Automatically clean trailing whitespaces on save autocmd BufWritePre *.* :call StripTrailingWhitespaces()