summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.config/lf/lfrc1
-rw-r--r--.config/mpv/mpv.conf2
-rw-r--r--.config/nvim/lua/config/lazy.lua2
-rw-r--r--.config/nvim/lua/plugins/lualine.lua5
-rw-r--r--.config/x11/xinitrc19
-rw-r--r--.config/zsh/alias.zsh18
-rw-r--r--.config/zsh/plugins.zsh2
7 files changed, 16 insertions, 33 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/nvim/lua/plugins/lualine.lua b/.config/nvim/lua/plugins/lualine.lua
index b2a92d0..53d22ff 100644
--- a/.config/nvim/lua/plugins/lualine.lua
+++ b/.config/nvim/lua/plugins/lualine.lua
@@ -7,7 +7,6 @@ return {
bg = '#32302f',
fg = '#a89984',
orange = '#fe8019',
- violet = '#a9a1e1',
red = '#cc241d',
green = '#98971a',
yellow = '#d79921',
@@ -37,7 +36,7 @@ return {
[''] = colors.orange,
ic = colors.yellow,
R = colors.bright_red,
- Rv = colors.violet,
+ Rv = colors.bright_magenta,
cv = colors.red,
ce = colors.red,
r = colors.cyan,
@@ -199,7 +198,7 @@ return {
ins_right {
'branch',
icon = '',
- color = { fg = colors.violet, gui = 'bold' },
+ color = { fg = colors.blue, gui = 'bold' },
}
ins_right {
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/alias.zsh b/.config/zsh/alias.zsh
index 4b01038..63b8be9 100644
--- a/.config/zsh/alias.zsh
+++ b/.config/zsh/alias.zsh
@@ -158,24 +158,6 @@ de() {
$VISUAL $sc
cd $p
}
-eebin() {
- file=$(find "$HOME"/.local/bin -type f | fzf)
- [ $? -ne 0 ] && return
- bsdsetsid emacsclient -c "$file"
- kill -9 "$(ps -p $$ -oppid=)"
-}
-eeconf() {
- file=$(find "$HOME"/.config -type f | fzf)
- [ $? -ne 0 ] && return
- bsdsetsid emacsclient -c "$file"
- kill -9 "$(ps -p $$ -oppid=)"
-}
-ee() {
- file=$(find . -type f | fzf)
- [ $? -ne 0 ] && return
- bsdsetsid emacsclient -c "$file"
- kill -9 "$(ps -p $$ -oppid=)"
-}
pa() {
if [ -d $HOME/.local/packs ] && cd $HOME/.local/packs || return 1
dir=$(\ls $HOME/.local/packs | fzf)
diff --git a/.config/zsh/plugins.zsh b/.config/zsh/plugins.zsh
index 9e13701..77bffa1 100644
--- a/.config/zsh/plugins.zsh
+++ b/.config/zsh/plugins.zsh
@@ -13,4 +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
-[[ -r "/usr/share/z/z.sh" ]] && source /usr/share/z/z.sh
+# [[ -r "/usr/share/z/z.sh" ]] && source /usr/share/z/z.sh