Added neovim config for SpaceVim, added VTE support to zshrc
This commit is contained in:
parent
7d21af781f
commit
c020b2d026
2 changed files with 8 additions and 1 deletions
1
.config/nvim
Symbolic link
1
.config/nvim
Symbolic link
|
@ -0,0 +1 @@
|
|||
../.SpaceVim
|
8
.zshrc
8
.zshrc
|
@ -29,7 +29,6 @@ bindkey -e "^[[1;5D" backward-word
|
|||
export EDITOR=vim
|
||||
export VISUAL=vim
|
||||
export PAGER=less
|
||||
export BORG_REPO=/mnt/backups/psi-jack/borg
|
||||
|
||||
#function custom_prompt() {
|
||||
# VTE_PWD_THING="$(__vte_osc7)"
|
||||
|
@ -43,6 +42,13 @@ if [[ -f /etc/solus-release ]]; then
|
|||
source /usr/share/defaults/etc/profile.d/vte.sh
|
||||
precmd_functions+=(__vte_osc7)
|
||||
fi
|
||||
elif [[ -f /etc/debian_version ]]; then
|
||||
if [[ $TILIX_ID || $VTE_VERSION ]]; then
|
||||
if [[ -r "/etc/profile.d/vte-2.91.sh" ]]; then
|
||||
source /etc/profile.d/vte-2.91.sh
|
||||
precmd_functions+=(__vte_osc7)
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# Set GPG TTY
|
||||
|
|
Loading…
Reference in a new issue