diff options
-rwxr-xr-x | bspwm/.config/bspwm/bspwmrc | 2 | ||||
-rwxr-xr-x | dunst/.config/dunst/dunstrc | 2 | ||||
-rwxr-xr-x | nvim/.config/nvim/init.vim | 4 | ||||
-rwxr-xr-x | sxhkd/.config/sxhkd/sxhkdrc | 2 | ||||
-rwxr-xr-x | zsh/.zshrc | 3 |
5 files changed, 7 insertions, 6 deletions
diff --git a/bspwm/.config/bspwm/bspwmrc b/bspwm/.config/bspwm/bspwmrc index d88582c..6b26399 100755 --- a/bspwm/.config/bspwm/bspwmrc +++ b/bspwm/.config/bspwm/bspwmrc | |||
@@ -10,7 +10,7 @@ bspc config borderless_monocle true | |||
10 | bspc config gapless_monocle true | 10 | bspc config gapless_monocle true |
11 | 11 | ||
12 | # rules | 12 | # rules |
13 | bspc rule -a Brave-browser desktop='^2' | 13 | bspc rule -a Chromium desktop='^2' |
14 | bspc rule -a Steam desktop='^6' | 14 | bspc rule -a Steam desktop='^6' |
15 | bspc rule -a "VirtualBox Manager" desktop='^6' | 15 | bspc rule -a "VirtualBox Manager" desktop='^6' |
16 | 16 | ||
diff --git a/dunst/.config/dunst/dunstrc b/dunst/.config/dunst/dunstrc index a1db2fc..21b5612 100755 --- a/dunst/.config/dunst/dunstrc +++ b/dunst/.config/dunst/dunstrc | |||
@@ -80,5 +80,3 @@ timeout = 5 | |||
80 | background = "#000000" | 80 | background = "#000000" |
81 | foreground = "#eeffff" | 81 | foreground = "#eeffff" |
82 | timeout = 0 | 82 | timeout = 0 |
83 | # vim:ft=cfg | ||
84 | |||
diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index e736f28..d584b28 100755 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim | |||
@@ -100,8 +100,8 @@ hi Comment cterm=italic | |||
100 | " statusbar | 100 | " statusbar |
101 | scriptencoding utf-8 | 101 | scriptencoding utf-8 |
102 | 102 | ||
103 | " cpp template | 103 | " templates |
104 | autocmd BufNewFile *.cpp 0r ~/.config/nvim/templates/skeleton.cpp | 104 | autocmd BufNewFile * silent! 0r $HOME/.config/nvim/templates/skelton.%:e |
105 | 105 | ||
106 | " statusline | 106 | " statusline |
107 | hi PrimaryBlock ctermbg=NONE ctermfg=8 | 107 | hi PrimaryBlock ctermbg=NONE ctermfg=8 |
diff --git a/sxhkd/.config/sxhkd/sxhkdrc b/sxhkd/.config/sxhkd/sxhkdrc index 99c0c2f..db05c16 100755 --- a/sxhkd/.config/sxhkd/sxhkdrc +++ b/sxhkd/.config/sxhkd/sxhkdrc | |||
@@ -5,7 +5,7 @@ super + shift + Return | |||
5 | super + @space | 5 | super + @space |
6 | dmenu_run -i -fn "JetBrains Mono Nerd Font Mono:style=medium:pixelsize=12.5" -nb "#000000" -nf "#f3f4f5" -sb "#EEFFFF" -sf "#000000" | 6 | dmenu_run -i -fn "JetBrains Mono Nerd Font Mono:style=medium:pixelsize=12.5" -nb "#000000" -nf "#f3f4f5" -sb "#EEFFFF" -sf "#000000" |
7 | super + shift + w | 7 | super + shift + w |
8 | brave | 8 | chromium |
9 | control + alt + l | 9 | control + alt + l |
10 | xset s activate | 10 | xset s activate |
11 | super + shift + f | 11 | super + shift + f |
@@ -66,6 +66,9 @@ compinit | |||
66 | bindkey -v | 66 | bindkey -v |
67 | export KEYTIMEOUT=1 | 67 | export KEYTIMEOUT=1 |
68 | 68 | ||
69 | # reverse search | ||
70 | bindkey '^R' history-incremental-search-backward | ||
71 | |||
69 | # Use vim keys in tab complete menu: | 72 | # Use vim keys in tab complete menu: |
70 | bindkey -M menuselect 'h' vi-backward-char | 73 | bindkey -M menuselect 'h' vi-backward-char |
71 | bindkey -M menuselect 'k' vi-up-line-or-history | 74 | bindkey -M menuselect 'k' vi-up-line-or-history |