Set configs for different envrionments

+ Check if we're in docker or running xorg
+ Adjust tmux / vim settings
This commit is contained in:
2022-08-28 17:25:44 -04:00
parent e0ff2faeba
commit 8ec0ec3cef
8 changed files with 118 additions and 49 deletions

7
.tmux/tmux-conf.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
if [ -z ${DISPLAY+notset} ]; then
tmux source-file ~/.tmux/.tmux-tty.conf
else
tmux source-file ~/.tmux/.tmux-gui.conf
fi