Merge branch 'dev' into gentoo

nvim: improve luasnips
system: fix tsession for irc
        add LATEX_RESOURCES variable
This commit is contained in:
David JULIEN 2021-11-20 22:02:06 +01:00
commit 912cd01977
No known key found for this signature in database
GPG Key ID: 4B388E8BD9D47382
3 changed files with 12 additions and 9 deletions

View File

@ -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({ "}", "" }),
}),
},

View File

@ -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

View File

@ -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"