summaryrefslogtreecommitdiff
path: root/.config/zsh/exports.zsh
diff options
context:
space:
mode:
Diffstat (limited to '.config/zsh/exports.zsh')
-rw-r--r--.config/zsh/exports.zsh29
1 files changed, 29 insertions, 0 deletions
diff --git a/.config/zsh/exports.zsh b/.config/zsh/exports.zsh
new file mode 100644
index 0000000..864b821
--- /dev/null
+++ b/.config/zsh/exports.zsh
@@ -0,0 +1,29 @@
+# Uncomment the following line to use case-sensitive completion.
+CASE_SENSITIVE="true"
+
+zle_highlight=('paste:none')
+
+# Which plugins would you like to load?
+plugins=(
+ zsh-syntax-highlighting
+ zsh-autosuggestions
+)
+
+autoload -U colors && colors
+
+# History in cache directory:
+HISTSIZE=10000
+SAVEHIST=10000
+HISTFILE=~/.cache/zsh/history
+
+# Preferred editor for local and remote sessions
+ if [[ -n $SSH_CONNECTION ]]; then
+ export EDITOR='nvim'
+ else
+ export EDITOR='nvim'
+ fi
+
+export CLICOLOR=1
+
+# Starship prompt
+# eval "$(starship init zsh)"