Compare commits
2 Commits
17e5915087
...
c26a11473f
Author | SHA1 | Date | |
---|---|---|---|
c26a11473f | |||
49720fac34 |
@ -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)
|
||||
#
|
||||
|
@ -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
|
||||
|
@ -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,15 +21,6 @@ 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 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 '#[fg=blue]%a%d-%m-%Y %H:%M:%S'
|
||||
|
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 +1,5 @@
|
||||
source $HOME/.config/zsh/.zshrc
|
||||
|
||||
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