diff --git a/nvim/.config/nvim/lua/axp/plugins/nightfox.lua b/nvim/.config/nvim/lua/axp/plugins/nightfox.lua index 2745224..bf12930 100644 --- a/nvim/.config/nvim/lua/axp/plugins/nightfox.lua +++ b/nvim/.config/nvim/lua/axp/plugins/nightfox.lua @@ -5,6 +5,6 @@ if status then vim.cmd.colorscheme('terafox') -- Transparency. - vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' }) - vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' }) + -- vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' }) + -- vim.api.nvim_set_hl_ns(1) end diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf index e280b31..37220cf 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/.config/tmux/tmux.conf @@ -21,15 +21,13 @@ bind -r L resize-pane -R 5 #-------------------------------------------------------# # View. #-------------------------------------------------------# -# set -g window-style 'bg=cyan fg=default' -# set -g window-active-style 'bg=cyan fg=default' +# set -g window-style 'bg=default fg=default' +# set -g window-active-style 'bg=default fg=default' -set -g pane-border-style 'fg=blue' -set -g pane-active-border-style 'fg=blue' - -set -g status-bg blue +# set -g pane-border-style 'fg=blue' +# set -g pane-active-border-style 'fg=blue' +# set -g status-bg blue # set -g status-fg white - -# set -g status-right-style 'fg=blue' +# set -g status-right-style 'fg=dark' # set -g status-right '#[fg=blue]%a%d-%m-%Y %H:%M:%S' diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index fe5e216..e261c2c 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -13,3 +13,6 @@ zsh_include_file "includes/nvm" # Add plugins. # zsh_add_plugin "hlissner/zsh-autopair" zsh_add_plugin "zsh-users/zsh-syntax-highlighting" + +# bun completions +[ -s "/home/antoxa/.bun/_bun" ] && source "/home/antoxa/.bun/_bun" diff --git a/zsh/.zshrc b/zsh/.zshrc index 13ac225..d93066e 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -1 +1,5 @@ source $HOME/.config/zsh/.zshrc + +# bun +export BUN_INSTALL="$HOME/.bun" +export PATH="$BUN_INSTALL/bin:$PATH"