remove sublimity mode and modify terminal instantiation key
This commit is contained in:
parent
123157c925
commit
902bcea33c
@ -19,8 +19,7 @@ set $wallpapers_path $HOME/Wallpapers
|
|||||||
|
|
||||||
### Output configuration
|
### Output configuration
|
||||||
#
|
#
|
||||||
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
|
output * bg `find $wallpapers_path/$(cat $HOME/theme) -type f | grep -v "gitkeep" | shuf -n 1` fill
|
||||||
output * bg `find $wallpapers_path/$([ -z "$DARK_MODE" ] && echo "light" || echo "dark") -type f | grep -v "gitkeep" | shuf -n 1` fill
|
|
||||||
|
|
||||||
# VNC External Monitor
|
# VNC External Monitor
|
||||||
output HEADLESS-1 {
|
output HEADLESS-1 {
|
||||||
@ -62,7 +61,7 @@ exec swayidle -w \
|
|||||||
#
|
#
|
||||||
bindsym $mod+Shift+n exec swaylock-corrupter
|
bindsym $mod+Shift+n exec swaylock-corrupter
|
||||||
# Start a terminal
|
# Start a terminal
|
||||||
bindsym $mod+Return exec $term
|
bindsym $mod+Shift+Return exec $term
|
||||||
|
|
||||||
# Kill focused window
|
# Kill focused window
|
||||||
bindsym $mod+Shift+q kill
|
bindsym $mod+Shift+q kill
|
||||||
@ -231,3 +230,4 @@ exec systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
|||||||
exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway
|
exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway
|
||||||
exec "systemctl --user import-environment {,WAYLAND_}DISPLAY SWAYSOCK; systemctl --user start sway-session.target"
|
exec "systemctl --user import-environment {,WAYLAND_}DISPLAY SWAYSOCK; systemctl --user start sway-session.target"
|
||||||
exec swaymsg -t subscribe '["shutdown"]' && systemctl --user stop sway-session.target
|
exec swaymsg -t subscribe '["shutdown"]' && systemctl --user stop sway-session.target
|
||||||
|
exec emacs-keys-everywhere
|
||||||
|
@ -63,21 +63,6 @@
|
|||||||
(do-frame-config)
|
(do-frame-config)
|
||||||
(add-hook 'after-make-frame-functions 'disable-scroll-bars))
|
(add-hook 'after-make-frame-functions 'disable-scroll-bars))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** submlimity
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(use-package sublimity
|
|
||||||
:ensure t
|
|
||||||
:straight '(sublimity
|
|
||||||
:type git
|
|
||||||
:host github
|
|
||||||
:repo "zk-phi/sublimity"))
|
|
||||||
|
|
||||||
(require 'sublimity-scroll)
|
|
||||||
;;(require 'sublimity-map) ;; experimental
|
|
||||||
(require 'sublimity-attractive)
|
|
||||||
|
|
||||||
(sublimity-mode 1)
|
|
||||||
#+END_SRC
|
|
||||||
** System path (macos)
|
** System path (macos)
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package exec-path-from-shell
|
(use-package exec-path-from-shell
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
eval "$(zoxide init --cmd z zsh)"
|
eval "$(zoxide init --cmd z zsh)"
|
||||||
|
|
||||||
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
|
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
|
||||||
@ -7,3 +6,9 @@ fi
|
|||||||
export GPG_TTY=$(tty)
|
export GPG_TTY=$(tty)
|
||||||
|
|
||||||
. /opt/asdf-vm/asdf.sh
|
. /opt/asdf-vm/asdf.sh
|
||||||
|
|
||||||
|
export PYENV_ROOT="$HOME/.pyenv"
|
||||||
|
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
|
||||||
|
eval "$(pyenv init -)"
|
||||||
|
|
||||||
|
export PATH=$PATH:/home/lizzy/.pyenv/shims
|
||||||
|
Loading…
Reference in New Issue
Block a user