This commit is contained in:
AntoXa PRO 2023-11-23 10:19:57 +03:00
parent 49720fac34
commit c26a11473f
10 changed files with 19 additions and 22 deletions

View File

@ -67,7 +67,7 @@ window:
# #
# Window opacity as a floating point number from `0.0` to `1.0`. # Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque. # The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.8 opacity: 0.9
# Startup Mode (changes require restart) # Startup Mode (changes require restart)
# #

View File

@ -49,8 +49,8 @@ local function save_profiles(threshold)
end end
time([[Luarocks path setup]], true) time([[Luarocks path setup]], true)
local package_path_str = "/home/antoxa/.cache/nvim/packer_hererocks/2.1.1694285958/share/lua/5.1/?.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1694285958/share/lua/5.1/?/init.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1694285958/lib/luarocks/rocks-5.1/?.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1694285958/lib/luarocks/rocks-5.1/?/init.lua" local package_path_str = "/home/antoxa/.cache/nvim/packer_hererocks/2.1.1700008891/share/lua/5.1/?.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1700008891/share/lua/5.1/?/init.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1700008891/lib/luarocks/rocks-5.1/?.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1700008891/lib/luarocks/rocks-5.1/?/init.lua"
local install_cpath_pattern = "/home/antoxa/.cache/nvim/packer_hererocks/2.1.1694285958/lib/lua/5.1/?.so" local install_cpath_pattern = "/home/antoxa/.cache/nvim/packer_hererocks/2.1.1700008891/lib/lua/5.1/?.so"
if not string.find(package.path, package_path_str, 1, true) then if not string.find(package.path, package_path_str, 1, true) then
package.path = package.path .. ';' .. package_path_str package.path = package.path .. ';' .. package_path_str
end end

View File

@ -21,13 +21,6 @@ bind -r L resize-pane -R 5
#-------------------------------------------------------# #-------------------------------------------------------#
# View. # View.
#-------------------------------------------------------# #-------------------------------------------------------#
# set -g window-style 'bg=default fg=default' set -g pane-border-style 'fg=blue'
# set -g window-active-style 'bg=default fg=default' 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=dark'
# set -g status-right '#[fg=blue]%a%d-%m-%Y %H:%M:%S'

View File

@ -13,6 +13,3 @@ zsh_include_file "includes/nvm"
# Add plugins. # Add plugins.
# zsh_add_plugin "hlissner/zsh-autopair" # zsh_add_plugin "hlissner/zsh-autopair"
zsh_add_plugin "zsh-users/zsh-syntax-highlighting" zsh_add_plugin "zsh-users/zsh-syntax-highlighting"
# bun completions
[ -s "/home/antoxa/.bun/_bun" ] && source "/home/antoxa/.bun/_bun"

0
zsh/.config/zsh/includes/aliases Normal file → Executable file
View File

8
zsh/.config/zsh/includes/bun Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
# bun completions
[ -s "/home/antoxa/.bun/_bun" ] && source "/home/antoxa/.bun/_bun"

0
zsh/.config/zsh/includes/environment Normal file → Executable file
View File

5
zsh/.config/zsh/includes/nvm Normal file → Executable file
View File

@ -2,6 +2,5 @@
# NVM. # NVM.
export NVM_DIR="$HOME/.nvm" export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
# nvm use --lts 1> /dev/null # [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"

0
zsh/.config/zsh/includes/prompt Normal file → Executable file
View File

View File

@ -1,5 +1,5 @@
source $HOME/.config/zsh/.zshrc source $HOME/.config/zsh/.zshrc
# bun export NVM_DIR="$HOME/.nvm"
export BUN_INSTALL="$HOME/.bun" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
export PATH="$BUN_INSTALL/bin:$PATH" [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion