Compare commits
9 Commits
marynux
...
b582b5daab
| Author | SHA1 | Date | |
|---|---|---|---|
|
b582b5daab
|
|||
|
37ba913453
|
|||
|
f5f394f8f7
|
|||
|
39e2301518
|
|||
|
c301c0c984
|
|||
|
244ccad598
|
|||
|
|
9baf9fe901
|
||
|
4f5edb6932
|
|||
|
|
a009c1049b
|
9
bin/.bin/zoom_screen
Executable file
9
bin/.bin/zoom_screen
Executable file
@@ -0,0 +1,9 @@
|
||||
current_resolution=$(xrandr | awk '/DSI1/ {print $4}')
|
||||
|
||||
if [[ $current_resolution == 1920x1200* ]];
|
||||
then
|
||||
xrandr --size 600x960
|
||||
else
|
||||
xrandr --size 1200x1920
|
||||
fi
|
||||
chwp
|
||||
@@ -13,3 +13,7 @@
|
||||
tool = vimdiff
|
||||
[alias]
|
||||
gone = !git branch -v | awk '/gone/ { print $1 }'
|
||||
dog = log --decorate --oneline --graph
|
||||
fap = fetch --all --prune
|
||||
[push]
|
||||
autoSetupRemote = true
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
# bspwm hotkeys
|
||||
#
|
||||
# Cleanly quit bspwm
|
||||
super + shift + a
|
||||
bspc quit 1 && pkill lemonpanel && pkill lemonbar
|
||||
super + shift + q
|
||||
bspc quit 1
|
||||
|
||||
# Show keybindings
|
||||
super + F1
|
||||
@@ -96,7 +96,7 @@ super + Return
|
||||
# bspc node -n @/
|
||||
|
||||
# go (Shift=move) to desktop (and focus the monitor that the desktop is located on. Bspwm style)
|
||||
super + {_,shift + }{ampersand,eacute,quotedbl,apostrophe,parenleft,minus,egrave,underscore,ccedilla,agrave}
|
||||
super + {_,shift + }{1,2,3,4,5,6,7,8,9,0}
|
||||
bspc {desktop -f,node -d} ^{1-9,10}
|
||||
|
||||
## Alternative: i3 style behavior (focus nth, desktop of the focused monitor)
|
||||
@@ -125,7 +125,7 @@ super + Tab
|
||||
WindowSelector
|
||||
|
||||
#Focus windows by direction, works with multihead
|
||||
super + {q,s,z,d}
|
||||
super + {a,s,w,d}
|
||||
focusmover {west,south,north,east}
|
||||
|
||||
super + {h,j,k,l}
|
||||
@@ -137,7 +137,7 @@ super + {Left,Down,Up,Right}
|
||||
# Move tiled windows. Moving a tiled window to
|
||||
# preselected one moves into preselection instead.
|
||||
# Moving out of the screen should move the window to next monitor if possible
|
||||
super + shift + {q,s,z,d}
|
||||
super + shift + {q,s,w,d}
|
||||
windowgrabber {west,south,north,east}
|
||||
|
||||
super + shift + {h,j,k,l}
|
||||
@@ -148,7 +148,7 @@ super + shift + {Left,Down,Up,Right}
|
||||
euclid_mover {west,south,north,east}
|
||||
|
||||
#resize windows
|
||||
super + ctrl + {q,s,z,d}
|
||||
super + ctrl + {a,s,w,d}
|
||||
bspwm_resize.sh {west,south,north,east}
|
||||
|
||||
super + ctrl + {h,j,k,l}
|
||||
@@ -249,8 +249,10 @@ mod5 + @button1
|
||||
super + space
|
||||
dmenu_recent -i -l 14 -w 600 -y $PANEL_HEIGHT
|
||||
|
||||
# Enable notifications
|
||||
super + p
|
||||
st spt
|
||||
{pkill dunst --signal=USR1 ,\
|
||||
pkill dunst --signal=USR2 }
|
||||
|
||||
super + shift + Return
|
||||
st
|
||||
@@ -332,6 +334,9 @@ super + ctrl + space
|
||||
{pkill picom ,\
|
||||
picom -b }
|
||||
|
||||
ctrl + alt +t
|
||||
pkill rotateScreen_au || rotateScreen_auto
|
||||
|
||||
# Remove receptacles
|
||||
super + BackSpace
|
||||
for i in $(bspc query -N -n .leaf.!window.local); do bspc node $i -k; done
|
||||
|
||||
6
tmux/.config/tmux/tmux.conf
Normal file
6
tmux/.config/tmux/tmux.conf
Normal file
@@ -0,0 +1,6 @@
|
||||
set -g mouse
|
||||
|
||||
bind h selectp -L
|
||||
bind j selectp -D
|
||||
bind k selectp -U
|
||||
bind l selectp -R
|
||||
1
vim/.vim/ftplugin/markdown.vim
Normal file
1
vim/.vim/ftplugin/markdown.vim
Normal file
@@ -0,0 +1 @@
|
||||
set tw=120
|
||||
20
vim/.vim/ycm_extra_conf.py
Normal file
20
vim/.vim/ycm_extra_conf.py
Normal file
@@ -0,0 +1,20 @@
|
||||
import os
|
||||
|
||||
PATH_TO_LOMBOK = os.path.expanduser("/usr/lib/lombok-common/lombok.jar")
|
||||
jdtls_args = ['-noverify',
|
||||
'-Xmx1G',
|
||||
'-XX:+UseG1GC',
|
||||
'-XX:+UseStringDeduplication']
|
||||
|
||||
def Settings( **kwargs ):
|
||||
if not os.path.exists(PATH_TO_LOMBOK):
|
||||
raise RuntimeError("Didn't find lombok jar")
|
||||
if kwargs['language'] == 'java':
|
||||
return {
|
||||
'server': {
|
||||
'jvm_args': [
|
||||
'-javaagent:' + PATH_TO_LOMBOK,
|
||||
'-Xbootclasspath/a:' + PATH_TO_LOMBOK
|
||||
] + jdtls_args
|
||||
}
|
||||
}
|
||||
@@ -26,7 +26,7 @@ let g:vimtex_view_method = 'zathura'
|
||||
nnoremap gd :YcmCompleter GoToDefinition<CR>
|
||||
nnoremap gr :YcmCompleter GoToReferences<CR>
|
||||
nnoremap K :YcmCompleter GetDoc<CR>
|
||||
nnoremap <F9> :YcmCompleter FixIt<CR>
|
||||
nnoremap <CR> :YcmCompleter FixIt<CR>
|
||||
noremap gN :Lex<CR>
|
||||
|
||||
nnoremap <F12> :Make<CR>
|
||||
@@ -62,7 +62,7 @@ let g:cpp_attributes_highlight = 1
|
||||
|
||||
let g:ycm_always_populate_location_list = 1
|
||||
let g:ycm_goto_buffer_command = "'split-or-existing-window'"
|
||||
let g:ycm_java_binary_path = "/usr/lib/jvm/java-17-openjdk/bin/java"
|
||||
let g:ycm_global_ycm_extra_conf = '~/.vim/ycm_extra_conf.py'
|
||||
let g:ycm_language_server = [
|
||||
\ {
|
||||
\ 'name': 'tex',
|
||||
@@ -105,6 +105,7 @@ hi Normal ctermfg=None ctermbg=None
|
||||
hi NonText ctermfg=None ctermbg=None
|
||||
|
||||
packadd termdebug
|
||||
let termdebug_wide=1
|
||||
|
||||
filetype off
|
||||
set rtp+=$HOME/.vim/bundle/Vundle.vim/
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
emulate sh -c 'source /etc/profile'
|
||||
emulate sh -c 'source ~/.profile'
|
||||
|
||||
@@ -182,7 +182,8 @@ bindkey '^[[B' history-substring-search-down
|
||||
# Apply different settigns for different terminals
|
||||
case $(basename "$(cat "/proc/$PPID/comm")") in
|
||||
login)
|
||||
RPROMPT="%{$fg[red]%} %(?..[%?])"
|
||||
RPROMPT="%(?.%{$fg[green]%}✓ %{$reset_color%}.%{$fg[red]%}✗ %{$reset_color%})"
|
||||
# RPROMPT="%{$fg[red]%} %(?..[%?])"
|
||||
alias x='startx ~/.xinitrc' # Type name of desired desktop after x, xinitrc is configured for it
|
||||
;;
|
||||
# 'tmux: server')
|
||||
|
||||
Reference in New Issue
Block a user