aboutsummaryrefslogtreecommitdiff
path: root/zsh/.config
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/.config')
-rw-r--r--zsh/.config/zsh/.zprofile3
-rw-r--r--zsh/.config/zsh/.zshrc13
2 files changed, 3 insertions, 13 deletions
diff --git a/zsh/.config/zsh/.zprofile b/zsh/.config/zsh/.zprofile
index 38df93c..9e5f5fd 100644
--- a/zsh/.config/zsh/.zprofile
+++ b/zsh/.config/zsh/.zprofile
@@ -4,3 +4,6 @@ export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
# User defaults
export EDITOR="nvim"
export PAGER="less"
+
+#CMake
+export CMAKE_EXPORT_COMPILE_COMMANDS=1
diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc
index 4b256ce..fe0a35f 100644
--- a/zsh/.config/zsh/.zshrc
+++ b/zsh/.config/zsh/.zshrc
@@ -138,16 +138,3 @@ alias gsw='git switch'
# Shell integrations
source <(fzf --zsh)
-
-
-# Start tmux
-
-function start_tmux() {
- if type tmux &> /dev/null; then
- if [[ -z "$TMUX" && -z $TERMINAL_CONTEXT ]]; then
- tmux -2 new-session -A -s home
- fi
- fi
-}
-
-start_tmux