diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/lf/lfrc | 1 | ||||
-rw-r--r-- | .config/mpv/mpv.conf | 2 | ||||
-rw-r--r-- | .config/nvim/lua/config/lazy.lua | 2 | ||||
-rw-r--r-- | .config/x11/xinitrc | 19 | ||||
-rw-r--r-- | .config/zsh/plugins.zsh | 1 |
5 files changed, 13 insertions, 12 deletions
diff --git a/.config/lf/lfrc b/.config/lf/lfrc index 60a0964..5565b0b 100644 --- a/.config/lf/lfrc +++ b/.config/lf/lfrc @@ -68,6 +68,7 @@ map <c-s> $$SHELL map <c-n> push :mkdir<space> map <f-7> push :mkdir<space> map <c-r> reload +map <c-g> clear cmap <c-g> cmd-escape map x !$f map X $$f diff --git a/.config/mpv/mpv.conf b/.config/mpv/mpv.conf index d1f0c60..749a32a 100644 --- a/.config/mpv/mpv.conf +++ b/.config/mpv/mpv.conf @@ -1,5 +1,5 @@ # video-sync=display-resample -vo=x11 +vo=gpu osc=yes cache=yes demuxer-max-bytes=4GiB diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua index 5041634..2b8d66d 100644 --- a/.config/nvim/lua/config/lazy.lua +++ b/.config/nvim/lua/config/lazy.lua @@ -83,7 +83,7 @@ require('lazy').setup({ default_overlength = 80, grace_length = 1, highlight_to_eol = true, - disable_ft = { 'qf', 'help', 'man', 'checkhealth', 'lazy', 'packer', 'NvimTree', 'Telescope', 'WhichKey', 'text', 'csv', 'lua', 'gosum', '' } + disable_ft = { 'qf', 'help', 'man', 'checkhealth', 'lazy', 'packer', 'NvimTree', 'Telescope', 'WhichKey', 'text', 'csv', 'lua', 'gosum', 'sh', '' } } end }, diff --git a/.config/x11/xinitrc b/.config/x11/xinitrc index 8c23f02..8d033d2 100644 --- a/.config/x11/xinitrc +++ b/.config/x11/xinitrc @@ -63,14 +63,15 @@ start_apps() { } export LANG='en_US.UTF-8' -[ $host = "mother" ] && xrandr \ - --output HDMI-0 --mode 1920x1080 --pos 2560x0 --rotate normal \ - --output DP-0 --off \ - --output DP-1 --off \ - --output DP-2 --off \ - --output DP-3 --off \ - --output DP-4 --primary --mode 2560x1440 --rate 180 --pos 0x0 --rotate normal \ - --output DP-5 --off +[ $host = "mother" ] && "$HOME"/.local/bin/scr2 +# [ $host = "mother" ] && xrandr \ +# --output HDMI-0 --mode 1920x1080 --pos 2560x0 --rotate normal \ +# --output DP-0 --off \ +# --output DP-1 --off \ +# --output DP-2 --off \ +# --output DP-3 --off \ +# --output DP-4 --primary --mode 2560x1440 --rate 180 --pos 0x0 --rotate normal \ +# --output DP-5 --off [ $host = "po-rbo" ] && xrandr \ --output eDP-1 --mode 1920x1200 --pos 0x0 --rotate normal \ --output HDMI-1 --primary --mode 2560x1440 --pos 1920x0 --rotate normal \ @@ -79,7 +80,7 @@ export LANG='en_US.UTF-8' --output VIRTUAL-1 --off dunst_shit -startif picom +[ $host = "po-rbo" ] && startif picom pgrep $mpd >/dev/null || $mpd >/dev/null 2>&1 xset s off xset -dpms diff --git a/.config/zsh/plugins.zsh b/.config/zsh/plugins.zsh index a6281cb..77bffa1 100644 --- a/.config/zsh/plugins.zsh +++ b/.config/zsh/plugins.zsh @@ -13,5 +13,4 @@ source $HOME/.local/packs/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh >/dev/null source $HOME/.local/packs/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh >/dev/null -/home/r_bousset/.local/packs/fzf-zsh-plugin/fzf-zsh-plugin.plugin.zsh # [[ -r "/usr/share/z/z.sh" ]] && source /usr/share/z/z.sh |