Cleaned vim related stuff

This commit is contained in:
Dreaded_X 2014-11-07 22:07:37 +01:00
parent da6183df11
commit cc21414285
4 changed files with 13 additions and 28 deletions

6
.gitmodules vendored
View File

@ -7,9 +7,6 @@
[submodule "vim/bundle/vim-tmux-navigator"] [submodule "vim/bundle/vim-tmux-navigator"]
path = vim/bundle/vim-tmux-navigator path = vim/bundle/vim-tmux-navigator
url = git@github.com:christoomey/vim-tmux-navigator.git url = git@github.com:christoomey/vim-tmux-navigator.git
[submodule "vim/bundle/bufexplorer"]
path = vim/bundle/bufexplorer
url = git@github.com:jlanzarotta/bufexplorer.git
[submodule "vim/bundle/vim-colors-solarized"] [submodule "vim/bundle/vim-colors-solarized"]
path = vim/bundle/vim-colors-solarized path = vim/bundle/vim-colors-solarized
url = git@github.com:altercation/vim-colors-solarized url = git@github.com:altercation/vim-colors-solarized
@ -28,9 +25,6 @@
[submodule "vim/bundle/vim-blockify"] [submodule "vim/bundle/vim-blockify"]
path = vim/bundle/vim-blockify path = vim/bundle/vim-blockify
url = git@github.com:mhinz/vim-blockify.git url = git@github.com:mhinz/vim-blockify.git
[submodule "vim/bundle/vim-interestingwords"]
path = vim/bundle/vim-interestingwords
url = git@github.com:vasconcelloslf/vim-interestingwords.git
[submodule "vim/bundle/vim-exchange"] [submodule "vim/bundle/vim-exchange"]
path = vim/bundle/vim-exchange path = vim/bundle/vim-exchange
url = git@github.com:tommcdo/vim-exchange.git url = git@github.com:tommcdo/vim-exchange.git

@ -1 +0,0 @@
Subproject commit fc022c55a57a8559af00272cc03f83e0a8029c63

@ -1 +0,0 @@
Subproject commit 416ee7ce554497a4fba0a49d1e5585eaa2f8aaa3

33
vimrc
View File

@ -1,37 +1,30 @@
execute pathogen#infect() execute pathogen#infect()
syntax on syntax on
filetype plugin indent on filetype plugin indent on
let g:EclimCompletionMethod = 'omnifunc' colorscheme solarized
set t_Co=256 set t_Co=256
set background=dark set background=dark
colorscheme solarized
set number set number
set incsearch set incsearch
set hlsearch set hlsearch
set completeopt-=preview
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> <F12> :noh<cr>
map <F2> :NERDTreeToggle<cr>
map <F3> \be
nmap <F4> :TagbarToggle<CR>
map <F5> \k
map <F9> :!./%<cr>
setlocal completeopt-=preview
set laststatus=2 set laststatus=2
let g:Powerline_symbols = 'fancy'
let b:EclimPhpHtmlValidate = 1
set expandtab set expandtab
set tabstop=2 set tabstop=2
let g:airline_powerline_fonts = 1 let g:airline_powerline_fonts = 1
let g:airline#extensions#tabline#enabled = 1 let g:airline#extensions#tabline#enabled = 1
let g:airline_theme='solarized' let g:airline_theme='solarized'
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> <F12> :noh<cr>
map <F2> :NERDTreeToggle<cr>
map <F3> :TagbarToggle<cr>
map <F12> :Tab<cr>
map <F9> :!./%<cr>