mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-17 19:26:27 +00:00
Add fzf.vim and mappings for vim-go
Also add back commented out tmuxline so it can be toggled on certain machines
This commit is contained in:
parent
60383b6a09
commit
7646ca8993
@ -53,6 +53,8 @@ nmap <leader>gg :GitGutterSignsToggle<CR>
|
||||
Plug 'ctrlpvim/ctrlp.vim'
|
||||
call s:smart_source_rc('plugins/ctrlp')
|
||||
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': 'yes \| ./install' }
|
||||
Plug 'junegunn/fzf.vim'
|
||||
let g:fzf_command_prefix = 'Fzf'
|
||||
Plug 'mhinz/vim-grepper'
|
||||
" vim-grepper {{
|
||||
let g:grepper = {
|
||||
@ -124,6 +126,8 @@ Plug 'mhinz/vim-startify'
|
||||
call s:smart_source_rc('plugins/startify')
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
" Plug 'edkolev/tmuxline.vim' " Removed because this can fail on some machines
|
||||
" let g:tmuxline_powerline_separators = 0
|
||||
call s:smart_source_rc('plugins/airline')
|
||||
" Highlight matching tags
|
||||
Plug 'gregsexton/MatchTag'
|
||||
@ -145,6 +149,10 @@ Plug 'avakhov/vim-yaml'
|
||||
Plug 'dag/vim-fish'
|
||||
Plug 'dart-lang/dart-vim-plugin'
|
||||
Plug 'fatih/vim-go'
|
||||
" vim-go {
|
||||
let g:go_def_mapping_enabled = 0
|
||||
" }
|
||||
|
||||
Plug 'groovy.vim'
|
||||
Plug 'hsanson/vim-android'
|
||||
Plug 'udalov/kotlin-vim'
|
||||
|
@ -31,10 +31,11 @@ let g:ctrlp_user_command = {
|
||||
\}
|
||||
" Leader Commands
|
||||
nnoremap <leader>b :CtrlPBuffer<CR>
|
||||
nnoremap <leader>t :CtrlPBufTag<CR>
|
||||
nnoremap <leader>r :CtrlPTag<CR>
|
||||
nnoremap <leader>u :CtrlPCurFile<CR>
|
||||
nnoremap <leader>m :CtrlPMRUFiles<CR>
|
||||
nnoremap <leader>p :CtrlP<CR>
|
||||
nnoremap <leader>r :CtrlPTag<CR>
|
||||
nnoremap <leader>t :CtrlPBufTag<CR>
|
||||
nnoremap <leader>u :CtrlPCurFile<CR>
|
||||
|
||||
" Special stuff for The Silver Searcher
|
||||
if executable('ag')
|
||||
|
Loading…
Reference in New Issue
Block a user