etc
This commit is contained in:
parent
49720fac34
commit
c26a11473f
@ -67,7 +67,7 @@ window:
|
||||
#
|
||||
# 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.
|
||||
opacity: 0.8
|
||||
opacity: 0.9
|
||||
|
||||
# Startup Mode (changes require restart)
|
||||
#
|
||||
|
@ -49,8 +49,8 @@ local function save_profiles(threshold)
|
||||
end
|
||||
|
||||
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 install_cpath_pattern = "/home/antoxa/.cache/nvim/packer_hererocks/2.1.1694285958/lib/lua/5.1/?.so"
|
||||
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.1700008891/lib/lua/5.1/?.so"
|
||||
if not string.find(package.path, package_path_str, 1, true) then
|
||||
package.path = package.path .. ';' .. package_path_str
|
||||
end
|
||||
|
@ -21,13 +21,6 @@ bind -r L resize-pane -R 5
|
||||
#-------------------------------------------------------#
|
||||
# View.
|
||||
#-------------------------------------------------------#
|
||||
# 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 status-fg white
|
||||
# set -g status-right-style 'fg=dark'
|
||||
# set -g status-right '#[fg=blue]%a%d-%m-%Y %H:%M:%S'
|
||||
set -g pane-border-style 'fg=blue'
|
||||
set -g pane-active-border-style 'fg=blue'
|
||||
set -g status-bg blue
|
||||
|
@ -13,6 +13,3 @@ 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"
|
||||
|
0
zsh/.config/zsh/includes/aliases
Normal file → Executable file
0
zsh/.config/zsh/includes/aliases
Normal file → Executable file
8
zsh/.config/zsh/includes/bun
Executable file
8
zsh/.config/zsh/includes/bun
Executable 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
0
zsh/.config/zsh/includes/environment
Normal file → Executable file
5
zsh/.config/zsh/includes/nvm
Normal file → Executable file
5
zsh/.config/zsh/includes/nvm
Normal file → Executable file
@ -2,6 +2,5 @@
|
||||
|
||||
# NVM.
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
||||
# nvm use --lts 1> /dev/null
|
||||
# [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||
# [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||
|
0
zsh/.config/zsh/includes/prompt
Normal file → Executable file
0
zsh/.config/zsh/includes/prompt
Normal file → Executable file
@ -1,5 +1,5 @@
|
||||
source $HOME/.config/zsh/.zshrc
|
||||
|
||||
# bun
|
||||
export BUN_INSTALL="$HOME/.bun"
|
||||
export PATH="$BUN_INSTALL/bin:$PATH"
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||
|
Loading…
Reference in New Issue
Block a user