Compare commits
5 commits
98a74f6279
...
ef2b60a2ef
Author | SHA1 | Date | |
---|---|---|---|
ef2b60a2ef | |||
bd67658764 | |||
af4148f734 | |||
c002ba957b | |||
36266195d1 |
8 changed files with 22 additions and 12 deletions
|
@ -40,3 +40,6 @@ alias synced-repos-status='
|
||||||
'
|
'
|
||||||
|
|
||||||
alias rm='rm -I --one-file-system -v'
|
alias rm='rm -I --one-file-system -v'
|
||||||
|
|
||||||
|
alias vim-grep='function _vim-grep(){ vim $(grep $@) }; _vim-grep'
|
||||||
|
alias vim-find='function _vim-find(){ vim $(find $@) }; _vim-find'
|
||||||
|
|
|
@ -32,9 +32,12 @@ bspc config automatic_scheme alternate
|
||||||
bspc config external_rules_command "$HOME/.config/bspwm/external_rules"
|
bspc config external_rules_command "$HOME/.config/bspwm/external_rules"
|
||||||
|
|
||||||
bspc rule -a 'firefox' desktop='web'
|
bspc rule -a 'firefox' desktop='web'
|
||||||
|
|
||||||
bspc rule -a 'firefox:Toolkit' follow='true' desktop='side-view' state='fullscreen'
|
bspc rule -a 'firefox:Toolkit' follow='true' desktop='side-view' state='fullscreen'
|
||||||
bspc rule -a 'vlc' follow='true' desktop='side-view' state='fullscreen'
|
bspc rule -a 'vlc' follow='true' desktop='side-view' state='fullscreen'
|
||||||
bspc rule -a 'MPlayer' follow='true' desktop='side-view' state='fullscreen'
|
bspc rule -a 'MPlayer' follow='true' desktop='side-view' state='fullscreen'
|
||||||
|
bspc rule -a 'mpv:gl' follow='true' desktop='side-view' state='fullscreen'
|
||||||
|
|
||||||
bspc rule -a 'TeamSpeak 3' desktop='voip' locked='true'
|
bspc rule -a 'TeamSpeak 3' desktop='voip' locked='true'
|
||||||
bspc rule -a 'Alacritty:mail' desktop='voip' locked='true'
|
bspc rule -a 'Alacritty:mail' desktop='voip' locked='true'
|
||||||
bspc rule -a 'Element' desktop='voip' locked='true'
|
bspc rule -a 'Element' desktop='voip' locked='true'
|
||||||
|
|
|
@ -14,6 +14,8 @@
|
||||||
[difftool]
|
[difftool]
|
||||||
prompt = false
|
prompt = false
|
||||||
[alias]
|
[alias]
|
||||||
|
ci = commit -v
|
||||||
|
cia = commit -v --amend
|
||||||
dt = difftool
|
dt = difftool
|
||||||
d = diff
|
d = diff
|
||||||
b = branch -vv
|
b = branch -vv
|
||||||
|
|
|
@ -20,6 +20,6 @@
|
||||||
format-underline = #1794D1
|
format-underline = #1794D1
|
||||||
format = <label>
|
format = <label>
|
||||||
|
|
||||||
click-left = alacritty -e sh -c "$HOME/.local/bin/archlinux-admin-update; read" &
|
click-left = alacritty -e sh -c "$HOME/.local/bin/archlinux-admin-update; $HOME/.local/bin/archlinux-check-updates > $HOME/.cache/archlinux-updates.txt; read" &
|
||||||
|
|
||||||
label = %output%
|
label = %output%
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
rofi.combi-modi: drun,ssh,run
|
|
||||||
rofi.font: hack 10
|
|
||||||
rofi.modi: combi,ssh,run,window
|
|
||||||
rofi.theme: /usr/share/rofi/themes/Arc-Dark.rasi
|
|
||||||
|
|
||||||
rofi.ssh-command: {terminal} -e bash -ic "ssh {host} [-p {port}];"
|
|
||||||
|
|
||||||
rofi.show-icons: true
|
|
||||||
rofi.icon-theme: "Papirus-Dark"
|
|
||||||
rofi.drun-display-format: "{name}"
|
|
10
.config/rofi/config.rasi
Normal file
10
.config/rofi/config.rasi
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
configuration {
|
||||||
|
modi: "combi,ssh,run,window";
|
||||||
|
font: "hack 10";
|
||||||
|
show-icons: true;
|
||||||
|
ssh-command: "{terminal} -e bash -ic "ssh {host} [-p {port}]"";
|
||||||
|
icon-theme: ""Papirus-Dark"";
|
||||||
|
drun-display-format: ""{name}"";
|
||||||
|
combi-modi: "drun,ssh,run";
|
||||||
|
theme: "/usr/share/rofi/themes/Arc-Dark.rasi";
|
||||||
|
}
|
|
@ -25,7 +25,7 @@ set nowrap
|
||||||
|
|
||||||
set wildmode=longest,list,full
|
set wildmode=longest,list,full
|
||||||
|
|
||||||
autocmd FileType yaml setlocal ai ts=2 sw=2 et cuc nu
|
autocmd FileType yaml setlocal ai tabstop=2 shiftwidth=2 expandtab cuc nu
|
||||||
|
|
||||||
runtime ftplugin/man.vim
|
runtime ftplugin/man.vim
|
||||||
set keywordprg=:Man
|
set keywordprg=:Man
|
||||||
|
@ -52,6 +52,7 @@ call plug#begin('~/.config/vim/plugged')
|
||||||
Plug 'vim-scripts/DoxygenToolkit.vim'
|
Plug 'vim-scripts/DoxygenToolkit.vim'
|
||||||
Plug 'drmikehenry/vim-headerguard'
|
Plug 'drmikehenry/vim-headerguard'
|
||||||
Plug 'cespare/vim-toml'
|
Plug 'cespare/vim-toml'
|
||||||
|
Plug 'posva/vim-vue'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
map <leader>m :Magit<CR>
|
map <leader>m :Magit<CR>
|
||||||
|
|
|
@ -50,6 +50,7 @@ autoload edit-command-line; zle -N edit-command-line
|
||||||
bindkey '^e' edit-command-line
|
bindkey '^e' edit-command-line
|
||||||
|
|
||||||
[ -f "$HOME/.config/aliasrc" ] && source $HOME/.config/aliasrc
|
[ -f "$HOME/.config/aliasrc" ] && source $HOME/.config/aliasrc
|
||||||
|
[ -x "$(command -v thefuck)" ] && eval $(thefuck --alias)
|
||||||
|
|
||||||
# Load zsh-syntax-highlighting; should be last.
|
# Load zsh-syntax-highlighting; should be last.
|
||||||
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
|
||||||
|
|
Loading…
Reference in a new issue