Started structure to use stow

This commit is contained in:
2015-03-13 22:24:39 +01:00
parent 0d75eac8bc
commit cc606f2a4e
6 changed files with 1 additions and 48 deletions

1
vimc/.vim Symbolic link
View File

@@ -0,0 +1 @@
../vim

45
vimc/.vimrc Normal file
View File

@@ -0,0 +1,45 @@
execute pathogen#infect()
syntax on
filetype plugin indent on
colorscheme gruvbox
set t_Co=256
set background=dark
set number
set incsearch
set hlsearch
set completeopt-=preview
set laststatus=2
set smartindent
set tabstop=2
set shiftwidth=2
set expandtab
set t_ZH=
set t_ZR=
let g:airline_powerline_fonts = 1
let g:airline#extensions#tabline#enabled = 1
let g:airline_theme='gruvbox'
let g:indentLine_char = '│'
let delimitMate_expand_cr = 1
let g:EclimCompletionMethod = 'omnifunc'
" let b:EclimPhpHtmlValidate = 1
nnoremap <silent> <M-l> :TmuxNavigateLeft<cr>
nnoremap <silent> <M-j> :TmuxNavigateDown<cr>
nnoremap <silent> <M-k> :TmuxNavigateUp<cr>
nnoremap <silent> <M-l> :TmuxNavigateRight<cr>
nnoremap <silent> <tab> :bnext<cr>
nnoremap <silent> <S-tab> :bprev<cr>
nnoremap <silent> <F12> :noh<cr>
nnoremap <F4> :buffers<cr>:buffer<space>
map <silent> <F2> :NERDTreeToggle<cr>
map <silent> <F3> :TagbarToggle<cr>
" map <F5> :!./%<cr>
" if !empty(glob("./build.gradle"))
map <F5> :ProjectRefresh<cr>
" map <F6> :Java<cr>
" endif
let g:ctrlp_custom_ignore = '\v[\/](build|bin)$'