diff --git a/.config/nvim b/.config/nvim index 0c5be13..e102335 160000 --- a/.config/nvim +++ b/.config/nvim @@ -1 +1 @@ -Subproject commit 0c5be1344f597fb495a42bfbefc1105643171d69 +Subproject commit e102335f6e1f006d9cb7a6eb8d3bf27452d57174 diff --git a/.zprofile b/.zprofile index 3ced297..cad08d2 100644 --- a/.zprofile +++ b/.zprofile @@ -3,3 +3,8 @@ export PATH="/usr/bin:/usr/sbin:$HOME/.local/bin:$HOME/.cargo/bin:/usr/local/bin export EDITOR=nvim export editor=nvim export XDG_CONFIG_HOME=~/.config +export GTK_IM_MODULE=fcitx +export QT_IM_MODULE=fcitx +export SDL_IM_MODULE=fcitx +export GLFW_IM_MODULE=ibus + diff --git a/.zshrc b/.zshrc index ab12d5b..c5c7112 100644 --- a/.zshrc +++ b/.zshrc @@ -20,6 +20,8 @@ alias ls="lsd --date \"$DATEFMT\"" alias grep="grep --color" alias egrep="grep -E" alias lgrep="find | grep" +alias lagrep="find -exec realpath {} \; | grep" +alias llgrep="find -type d -exec lsd -lah {} \;| grep" alias psgrep="ps axu | grep" alias plasmarestart="killall plasmashell; kstart5 plasmashell" alias isotime='date +"%Y-%m-%dT%H:%M:%S%z"' @@ -34,6 +36,7 @@ alias accon="HOST=$(hostname) conda activate" alias gotemp="cd $(mktemp -d)" alias open=xdg-open alias ipb="ip -brief" +alias ps all="ps -eadf" ### Functions function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }