mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2025-01-08 07:57:37 +00:00
Add vim-abusetheforce and relevant settings
This commit is contained in:
parent
3677b73206
commit
a15e401781
@ -11,8 +11,6 @@ Bundle 'gmarik/vundle'
|
|||||||
" Rest of my bundles
|
" Rest of my bundles
|
||||||
|
|
||||||
" -- File Nav --
|
" -- File Nav --
|
||||||
" Quick find files in project
|
|
||||||
Bundle 'kien/ctrlp.vim'
|
|
||||||
" File tree navigation
|
" File tree navigation
|
||||||
Bundle 'scrooloose/nerdtree'
|
Bundle 'scrooloose/nerdtree'
|
||||||
" Switch to alternate file
|
" Switch to alternate file
|
||||||
@ -22,8 +20,13 @@ Bundle 'file-line'
|
|||||||
" Git integration
|
" Git integration
|
||||||
Bundle 'tpope/vim-fugitive'
|
Bundle 'tpope/vim-fugitive'
|
||||||
" Needs Vim compiled with Ruby
|
" Needs Vim compiled with Ruby
|
||||||
" Quick find files in project
|
if has('ruby')
|
||||||
Bundle 'wincent/Command-T'
|
" Quick find files in project
|
||||||
|
Bundle 'wincent/Command-T'
|
||||||
|
else
|
||||||
|
" Quick find files in project
|
||||||
|
Bundle 'kien/ctrlp.vim'
|
||||||
|
end
|
||||||
|
|
||||||
" -- Buffer Nav --
|
" -- Buffer Nav --
|
||||||
" Quick buffer switching
|
" Quick buffer switching
|
||||||
@ -75,6 +78,7 @@ Bundle 'altercation/vim-colors-solarized'
|
|||||||
|
|
||||||
" -- Filetypes --
|
" -- Filetypes --
|
||||||
Bundle 'ViViDboarder/vim-forcedotcom'
|
Bundle 'ViViDboarder/vim-forcedotcom'
|
||||||
|
Bundle 'ViViDboarder/vim-abuse-the-force'
|
||||||
Bundle 'pdurbin/vim-tsv'
|
Bundle 'pdurbin/vim-tsv'
|
||||||
"Bundle 'chrisbra/csv.vim'
|
"Bundle 'chrisbra/csv.vim'
|
||||||
Bundle 'pangloss/vim-javascript'
|
Bundle 'pangloss/vim-javascript'
|
||||||
@ -278,6 +282,14 @@ let g:airline#extensions#tabline#enabled = 1
|
|||||||
let g:airline#extensions#tabline#left_sep = ' '
|
let g:airline#extensions#tabline#left_sep = ' '
|
||||||
let g:airline#extensions#tabline#left_alt_sep = '|'
|
let g:airline#extensions#tabline#left_alt_sep = '|'
|
||||||
|
|
||||||
|
" AbuseTheForce
|
||||||
|
" Set foreground if using tmux, otherwise background
|
||||||
|
if exists("$TMUX") || ( has("gui_running") && has("gui_macvim") )
|
||||||
|
let g:abusetheforce_dispatch_background = 0
|
||||||
|
else
|
||||||
|
let g:abusetheforce_dispatch_background = 1
|
||||||
|
end
|
||||||
|
|
||||||
" Buffet shortcut
|
" Buffet shortcut
|
||||||
nnoremap <silent> <F2> :Bufferlist<CR>
|
nnoremap <silent> <F2> :Bufferlist<CR>
|
||||||
nnoremap <leader>bl :Bufferlist<CR>
|
nnoremap <leader>bl :Bufferlist<CR>
|
||||||
|
Loading…
Reference in New Issue
Block a user