add old awesome config, add sway, i3statusrs, zathura, mako, neomutt
This commit is contained in:
parent
1798d6f536
commit
cbcc20d616
26 changed files with 1207 additions and 19 deletions
|
@ -9,4 +9,5 @@ fi
|
|||
|
||||
export EDITOR=nvim
|
||||
|
||||
if [ -e /home/gshipunov/.nix-profile/etc/profile.d/nix.sh ]; then . /home/gshipunov/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
|
||||
|
||||
if [ -e /home/grue/.nix-profile/etc/profile.d/nix.sh ]; then . /home/grue/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
alias luamk="latexmk -pdf -pvc -interaction=nonstopmode -pdflatex=lualatex"
|
||||
# LaTeX
|
||||
alias luamk="latexmk -pdf -interaction=nonstopmode -pdflatex=lualatex"
|
||||
alias lmk="latexmk -pdf -interaction=nonstopmode"
|
||||
|
||||
# editor
|
||||
if [ -x "$(command -v nvim)" ]; then
|
||||
alias vim="nvim"
|
||||
alias vi="nvim"
|
||||
|
|
6
bash/.bashrc.d/path.sh
Normal file
6
bash/.bashrc.d/path.sh
Normal file
|
@ -0,0 +1,6 @@
|
|||
# add cargo to PATH
|
||||
if ! [[ "$PATH" =~ "$HOME/.cargo/bin:" ]]
|
||||
then
|
||||
PATH="$HOME/.cargo/bin:$PATH"
|
||||
fi
|
||||
export PATH
|
1
bash/.bashrc.d/vars.sh
Normal file
1
bash/.bashrc.d/vars.sh
Normal file
|
@ -0,0 +1 @@
|
|||
export JULIA_NUM_THREADS=auto
|
Loading…
Add table
Add a link
Reference in a new issue