summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile20
-rw-r--r--hypr/hyprland.conf53
-rw-r--r--hypr/pyprland.toml2
-rw-r--r--zsh/.zshrc86
4 files changed, 113 insertions, 48 deletions
diff --git a/Makefile b/Makefile
index 28bc66e..12854c4 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,23 @@ DCONFS := doas.conf
all:
-install: install-zshconfigs install-shconfigs vimplug-vim
+install: install-hyprplugins install-zshconfigs install-shconfigs vimplug-vim
+
+install-hyprplugins: install-hyprsplit install-hyprland-plugins
+
+install-hyprsplit:
+ @echo "Installing hyprsplit..."
+ @hyprpm add https://github.com/shezdy/hyprsplit || echo "Already installed!"
+ @echo "Enabling hyprsplit..."
+ @hyprpm enable hyprsplit
+ @echo "Done."
+
+install-hyprland-plugins:
+ @echo "Installing hyprland-plugins..."
+ @hyprpm add https://github.com/hyprwm/hyprland-plugins || echo "Already installed!"
+ @echo "Enabling hyprscrolling..."
+ @hyprpm enable hyprscrolling
+ @echo "Done."
install-zshconfigs: $(ZCONFS)
@echo "Installing zsh conf files..."
@@ -34,3 +50,5 @@ doas-conf: $(DCONFS)
@echo "doas.conf..."
@sudo cp -n doas.conf /etc/doas.conf
@echo "Done."
+
+.PHONY: install-hyprplugins install-zshconfigs install-shconfigs vimplug-vim doas-conf install
diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf
index e2d8153..80848af 100644
--- a/hypr/hyprland.conf
+++ b/hypr/hyprland.conf
@@ -8,8 +8,8 @@ monitor = , preferred, auto, 1
#{{{ Autostart
# Execute your favorite apps at launch
# exec-once = waybar & hyprpaper & firefox
-exec-once = xdph
exec-once = hyprpm reload -n
+exec-once = xdph
exec-once = hyprpaper
#exec-once = hypridle
exec-once = waybar
@@ -89,7 +89,7 @@ general {
#col.inactive_border = rgba(595959aa)
col.active_border = rgba(198844ee)
col.inactive_border = rgba(1b1d1cee)
- layout = master
+ layout = scrolling
}
#}}}
@@ -174,6 +174,16 @@ master {
}
#}}}
+#{{{ Hyprscrolling layout options
+plugin:hyprscrolling {
+ fullscreen_on_one_column = true
+ column_width = 0.5
+ explicit_column_widths = 0.333, 0.5, 0.667, 1.0
+ focus_fit_method = 1
+ follow_focus = true
+}
+#}}}
+
#{{{ Gestures options
gestures {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
@@ -228,18 +238,33 @@ $secdMod = ALT
#}}}
#{{{ Master layout binds
-# Master layout binds
-bind = $mainMod+SHIFT, Return, layoutmsg, swapwithmaster master #MASTER
-bind = $mainMod+SHIFT, J, layoutmsg, swapnext #MASTER
-bind = $mainMod+SHIFT, K, layoutmsg, swapprev #MASTER
-bind = $mainMod+SHIFT, H, layoutmsg, addmaster #MASTER
-bind = $mainMod+SHIFT, L, layoutmsg, removemaster #MASTER
-binde = $mainMod, J, layoutmsg, cyclenext #MASTER
-binde = $mainMod, K, layoutmsg, cycleprev #MASTER
-binde = $mainMod, H, splitratio, -0.01 #MASTER
-binde = $mainMod, L, splitratio, +0.01 #MASTER
-bind = $mainMod+SHIFT, O, splitratio, exact 0.55 #MASTER
-bind = $mainMod, O, splitratio, exact 0.69 #MASTER
+## Master layout binds
+#bind = $mainMod+SHIFT, Return, layoutmsg, swapwithmaster master #MASTER
+#bind = $mainMod+SHIFT, J, layoutmsg, swapnext #MASTER
+#bind = $mainMod+SHIFT, K, layoutmsg, swapprev #MASTER
+#bind = $mainMod+SHIFT, H, layoutmsg, addmaster #MASTER
+#bind = $mainMod+SHIFT, L, layoutmsg, removemaster #MASTER
+#binde = $mainMod, J, layoutmsg, cyclenext #MASTER
+#binde = $mainMod, K, layoutmsg, cycleprev #MASTER
+#binde = $mainMod, H, splitratio, -0.01 #MASTER
+#binde = $mainMod, L, splitratio, +0.01 #MASTER
+#bind = $mainMod+SHIFT, O, splitratio, exact 0.55 #MASTER
+#bind = $mainMod, O, splitratio, exact 0.69 #MASTER
+#}}}
+
+#{{{ hyprscrolling layout binds
+# hyprscrolling layout binds
+#bind = $mainMod+SHIFT, H, layoutmsg, move -1 #HYPRSCROLLING
+#bind = $mainMod+SHIFT, L, layoutmsg, move +1 #HYPRSCROLLING
+bind = $mainMod+SHIFT, H, layoutmsg, movewindowto l #HYPRSCROLLING
+bind = $mainMod+SHIFT, L, layoutmsg, movewindowto r #HYPRSCROLLING
+bind = $mainMod+SHIFT, J, layoutmsg, colresize -conf #HYPRSCROLLING
+bind = $mainMod+SHIFT, K, layoutmsg, colresize +conf #HYPRSCROLLING
+bind = $mainMod, H, movefocus, l #HYPRSCROLLING
+bind = $mainMod, J, movefocus, u #HYPRSCROLLING
+bind = $mainMod, K, movefocus, d #HYPRSCROLLING
+bind = $mainMod, L, movefocus, r #HYPRSCROLLING
+bind = $mainMod+SHIFT, Return, layoutmsg, promote #HYPRSCROLLING
#}}}
#{{{ Group binds
diff --git a/hypr/pyprland.toml b/hypr/pyprland.toml
index 038e8dc..5c1d343 100644
--- a/hypr/pyprland.toml
+++ b/hypr/pyprland.toml
@@ -85,7 +85,7 @@ lazy = true
size = "50% 50%"
position = "25% 25%"
-[scratchpads.qpwgraph]
+[scratchpads.helvum]
animation = ""
command = "helvum"
class = "org.pipewire.Helvum"
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 791b5d1..e08bb20 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -1,16 +1,4 @@
#zmodload zsh/zprof
-if [ -n "$ZPLUG_HOME" ]; then
- if [ -d "$ZPLUG_HOME" ]; then
- export ZPLUG_INSTALLED="y"
- source "$ZPLUG_HOME/init.zsh"
- fi
-elif [ -d "$XDG_DATA_HOME/zplug" ]; then
- export ZPLUG_INSTALLED="y"
- source "$XDG_DATA_HOME/zplug/init.zsh"
-elif [ -d "$HOME/.zplug" ]; then
- export ZPLUG_INSTALLED="y"
- source "$HOME/.zplug/init.zsh"
-fi
[ -z "$XDG_CONFIG_HOME" ] && XDG_CONFIG_HOME="$HOME/.config"
HISTFILE="$XDG_CONFIG_HOME/zsh/hist"
SAVEHIST=1000
@@ -70,31 +58,65 @@ export KEYTIMEOUT=1
#fpath+="$XDG_CONFIG_HOME/zsh/zfunc"
-if [ -n "$ZPLUG_INSTALLED" ]; then
- # zsh history substring search
- zplug "zsh-users/zsh-history-substring-search", as:plugin
-
- bindkey "${key[Up]}" history-substring-search-up
- bindkey "${key[Down]}" history-substring-search-down
- bindkey -M vicmd "${key[Up]}" history-substring-search-up
- bindkey -M vicmd "${key[Down]}" history-substring-search-down
- bindkey -M vicmd "k" history-substring-search-up
- bindkey -M vicmd "j" history-substring-search-down
-
- # zsh syntax highlighting
- zplug "zsh-users/zsh-syntax-highlighting", defer:2
-
- # load zsh plugins
- zplug load
-fi
-
autoload -Uz compinit
if [[ -n ${ZDOTDIR}/.zcompdump(#qN.mh+24) ]]; then
compinit
else
- compinit -C;
-fi;
+ compinit -C
+fi
+
+zshcache_time="$(date +%s%N)"
+
+autoload -Uz add-zsh-hook
+
+rehash_precmd() {
+ if [[ -a /var/cache/zsh/pacman ]]; then
+ local paccache_time="$(date -r /var/cache/zsh/pacman +%s%N)"
+ if (( zshcache_time < paccache_time )); then
+ rehash
+ zshcache_time="$paccache_time"
+ fi
+ fi
+}
+
+add-zsh-hook -Uz precmd rehash_precmd
zstyle ':completion:*' hosts off
+### Added by Zinit's installer
+if [[ ! -f $HOME/.local/share/zinit/zinit.git/zinit.zsh ]]; then
+ print -P "%F{33} %F{220}Installing %F{33}ZDHARMA-CONTINUUM%F{220} Initiative Plugin Manager (%F{33}zdharma-continuum/zinit%F{220})…%f"
+ command mkdir -p "$HOME/.local/share/zinit" && command chmod g-rwX "$HOME/.local/share/zinit"
+ command git clone https://github.com/zdharma-continuum/zinit "$HOME/.local/share/zinit/zinit.git" && \
+ print -P "%F{33} %F{34}Installation successful.%f%b" || \
+ print -P "%F{160} The clone has failed.%f%b"
+fi
+
+source "$HOME/.local/share/zinit/zinit.git/zinit.zsh"
+autoload -Uz _zinit
+(( ${+_comps} )) && _comps[zinit]=_zinit
+
+# Load a few important annexes, without Turbo
+# (this is currently required for annexes)
+zinit light-mode for \
+ zdharma-continuum/zinit-annex-as-monitor \
+ zdharma-continuum/zinit-annex-bin-gem-node \
+ zdharma-continuum/zinit-annex-patch-dl \
+ zdharma-continuum/zinit-annex-rust
+
+### End of Zinit's installer chunk
+zinit snippet OMZ::plugins/git/git.plugin.zsh
+
+zinit load 'zsh-users/zsh-history-substring-search'
+zinit ice wait atload'_history_substring_search_config'
+
+bindkey "${key[Up]}" history-substring-search-up
+bindkey "${key[Down]}" history-substring-search-down
+bindkey -M vicmd "${key[Up]}" history-substring-search-up
+bindkey -M vicmd "${key[Down]}" history-substring-search-down
+bindkey -M vicmd "k" history-substring-search-up
+bindkey -M vicmd "j" history-substring-search-down
+
+source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
+
#zprof