diff --git a/.config/nvim/lua/plugin/luasnip.lua b/.config/nvim/lua/plugin/luasnip.lua index 9531bf0..736acdc 100644 --- a/.config/nvim/lua/plugin/luasnip.lua +++ b/.config/nvim/lua/plugin/luasnip.lua @@ -433,7 +433,7 @@ ls.snippets = { i(1), t({ "" }), d(2, rec_ls, {}), - t({ "", "\\end{itemize}" }), + t({ "", "\\end{itemize}", "" }), }), s("frm", { t({ "\\begin{" }), @@ -448,14 +448,16 @@ ls.snippets = { i(0), t({ "", "\\end{" }), f(copy, 1), - t({ "}" }), + t({ "}", "" }), }), - s("rmk", { - t({ "\\begin{rmk}" }), - t({ "", "\t" }), - i(1), + s("env", { + t({ "\\begin{" }), + i(1, "foo"), + t({ "}", "\t" }), + i(2), t({ "", "\\end{" }), - i(0), + f(copy,1), + t({ "}", "" }), }), }, diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc index 066e651..53e59bf 100644 --- a/.config/sxhkd/sxhkdrc +++ b/.config/sxhkd/sxhkdrc @@ -64,7 +64,7 @@ super + shift + n $TERMINAL -g 128x32 -c "floating" -e tsession "mail" "$MAIL_CLIENT" super + shift + i - $TERMINAL -g 128x32 -c "floating" -e tsession "mail" "$IRC_CLIENT" + $TERMINAL -g 128x32 -c "floating" -e tsession "irc" "$IRC_CLIENT" super + shift + t $TERMINAL -g 128x32 -c "floating" -e tremc diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile index de274ca..49e507c 100644 --- a/.config/zsh/.zprofile +++ b/.config/zsh/.zprofile @@ -6,8 +6,9 @@ ## path export PATH="$(find $HOME/.local/bin -type d | tr '\n' ':' | sed 's/:$//'):$PATH" -## dotfiles +## custom paths export DOTFILES="$HOME/.dotfiles.git" +export LATEX_RESOURCES="$HOME/documents/latex" ## XDG_BASE_DIRECTORIES export XAUTHORITY="$XDG_RUNTIME_DIR/Xauthority"