From 228acd9992afb1da381c21d3d1a2f16c74752287 Mon Sep 17 00:00:00 2001 From: xfy Date: Mon, 14 Oct 2024 14:07:57 +0800 Subject: [PATCH] add deno support --- kitty-linux/kitty.conf | 2 +- zsh/zshrc | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/kitty-linux/kitty.conf b/kitty-linux/kitty.conf index 8e86a60..ec11e5e 100644 --- a/kitty-linux/kitty.conf +++ b/kitty-linux/kitty.conf @@ -987,7 +987,7 @@ tab_title_template "{index}: {title[title.rfind('/')+1:]}" #: The foreground and background colors. -background_opacity 0.95 +background_opacity 0.97 #: The opacity of the background. A number between zero and one, where #: one is opaque and zero is fully transparent. This will only work if diff --git a/zsh/zshrc b/zsh/zshrc index 90bd276..f8aceae 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -1,3 +1,5 @@ +# Add deno completions to search path +if [[ ":$FPATH:" != *":/home/xfy/.zsh/completions:"* ]]; then export FPATH="/home/xfy/.zsh/completions:$FPATH"; fi export ZSH="$HOME/.oh-my-zsh" ZSH_THEME="powerlevel10k/powerlevel10k" plugins=(git zsh-autosuggestions zsh-syntax-highlighting zsh-vi-mode fzf-tab) @@ -152,3 +154,4 @@ load-nvmrc() { fi } +. "/home/xfy/.deno/env" \ No newline at end of file