Skip to content

Commit

Permalink
Added fun search
Browse files Browse the repository at this point in the history
  • Loading branch information
wangjs committed Aug 3, 2015
1 parent 748b298 commit b0b7296
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -233,3 +233,9 @@
[submodule "janus/vim/tools/jshint2"]
path = janus/vim/tools/jshint2
url = https://github.com/Shutnik/jshint2.vim.git
[submodule "janus/vim/tools/vim-airline"]
path = janus/vim/tools/vim-airline
url = https://github.com/bling/vim-airline.git
[submodule "janus/vim/tools/ctrlp-funky"]
path = janus/vim/tools/ctrlp-funky
url = https://github.com/tacahiroy/ctrlp-funky.git
1 change: 1 addition & 0 deletions janus/vim/tools/ctrlp-funky
Submodule ctrlp-funky added at 317125
1 change: 1 addition & 0 deletions janus/vim/tools/vim-airline
Submodule vim-airline added at cdc6d9
6 changes: 5 additions & 1 deletion janus/vim/vimrc.after
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ endfun
" NERDTree
nmap <C-n> :NERDTreeToggle<CR>
" Ack
nmap <C-a> :Ack
nmap <leader>fg :Ack .
" CtrlP
nmap <leader>ff :CtrlP .<CR>
" CtrlP funky
nmap <leader>fu :CtrlPFunky<CR>

" Tab indent 2 spaces
nmap <leader>2 :call TabIndent2Spaces()<CR>
Expand Down
6 changes: 6 additions & 0 deletions janus/vim/vimrc.before
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@
let mapleader = ","
set mouse=a " Enable mouse use in all modes
set relativenumber

" CtrlP unky
let g:ctrlp_funky_matchtype = 'path'

" Disable Plugin
call janus#disable_plugin('vim-trailing-whitespace')

0 comments on commit b0b7296

Please sign in to comment.