diff options
author | aktersnurra <grydholm@kth.se> | 2021-02-07 14:30:31 +0100 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2021-02-07 14:30:31 +0100 |
commit | 71ad675b3280ba89289ecb09a1dc4a620989aef5 (patch) | |
tree | 96e47471e36e96d44820be3a7bc1b831c809d7f2 /.config/zsh/exports.zsh | |
parent | 90ed26fa905edb41e69fe3b3f8d92096a23aa40f (diff) |
Added zsh configs
Diffstat (limited to '.config/zsh/exports.zsh')
-rw-r--r-- | .config/zsh/exports.zsh | 29 |
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)" |