Compare commits
No commits in common. "c26a11473f9aa9b92738c364417d3efd361528e2" and "17e59150871e83e92d926681ad72bd8b7b158eeb" have entirely different histories.
c26a11473f
...
17e5915087
@ -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.9
|
||||
opacity: 0.8
|
||||
|
||||
# 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_ns(1)
|
||||
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' })
|
||||
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.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"
|
||||
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"
|
||||
if not string.find(package.path, package_path_str, 1, true) then
|
||||
package.path = package.path .. ';' .. package_path_str
|
||||
end
|
||||
|
@ -21,6 +21,15 @@ 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
Executable file → Normal file
0
zsh/.config/zsh/includes/aliases
Executable file → Normal file
@ -1,8 +0,0 @@
|
||||
#!/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
Executable file → Normal file
0
zsh/.config/zsh/includes/environment
Executable file → Normal file
5
zsh/.config/zsh/includes/nvm
Executable file → Normal file
5
zsh/.config/zsh/includes/nvm
Executable file → Normal file
@ -2,5 +2,6 @@
|
||||
|
||||
# NVM.
|
||||
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
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
||||
# nvm use --lts 1> /dev/null
|
||||
# [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
|
||||
|
0
zsh/.config/zsh/includes/prompt
Executable file → Normal file
0
zsh/.config/zsh/includes/prompt
Executable file → Normal file
@ -1,5 +1 @@
|
||||
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