diff --git a/nvim/after/ftplugin/javascript.vim b/nvim/after/ftplugin/javascript.vim deleted file mode 100644 index d4217f4..0000000 --- a/nvim/after/ftplugin/javascript.vim +++ /dev/null @@ -1 +0,0 @@ -setlocal matchpairs-=<:> diff --git a/zsh/prompt.zsh b/zsh/prompt.zsh index aa79b0e..0644c0a 100644 --- a/zsh/prompt.zsh +++ b/zsh/prompt.zsh @@ -1,5 +1,7 @@ #!/usr/bin/env zsh +export VIRTUAL_ENV_DISABLE_PROMPT=false + # Escapes `%` in all arguments by replacing it with `%%`. Escaping is needed so # that untrusted input (e.g. git branch names) doesn't affect prompt rendering. prompt_escape() { @@ -100,11 +102,6 @@ PROMPT+='$(prompt_vcs_info 2>/dev/null)' # Python's virtualenv PROMPT+='${VIRTUAL_ENV:+" %F{blue}venv:%F{magenta}${VIRTUAL_ENV:t}%f"}' -VIRTUAL_ENV_DISABLE_PROMPT=true - -# pyenv -PROMPT+='${PYENV_VERSION:+" %F{blue}pyenv:%F{magenta}${PYENV_VERSION:t}%f"}' -PYENV_VIRTUAL_ENV_DISABLE_PROMPT=true PROMPT+=' '