File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change
1
+ *.class
1
2
*.min.js
3
+ .cargo
4
+ .local/lib
5
+ .steam
6
+ .wine
7
+ TAGS
2
8
jquery*.js
3
9
src/test
4
10
target
5
- TAGS
11
+ virtual
Original file line number Diff line number Diff line change
1
+ # Setup fzf
2
+ # ---------
3
+ if [[ ! " $PATH " == * /usr/local/src/fzf/bin* ]]; then
4
+ export PATH=" $PATH :/usr/local/src/fzf/bin"
5
+ fi
6
+
7
+ # Auto-completion
8
+ # ---------------
9
+ [[ $- == * i* ]] && source " /usr/local/src/fzf/shell/completion.bash" 2> /dev/null
10
+
11
+ # Key bindings
12
+ # ------------
13
+ source " /usr/local/src/fzf/shell/key-bindings.bash"
14
+
15
+ # Setting ag as the default source for fzf
16
+ # and include hidden files
17
+ export FZF_DEFAULT_COMMAND=' ag --hidden --ignore .git -g ""'
18
+
19
+ # To apply the command to CTRL-T as well
20
+ export FZF_CTRL_T_COMMAND=" $FZF_DEFAULT_COMMAND "
21
+
22
+
You can’t perform that action at this time.
0 commit comments