From c26a11473f9aa9b92738c364417d3efd361528e2 Mon Sep 17 00:00:00 2001 From: AntoXa PRO Date: Thu, 23 Nov 2023 10:19:57 +0300 Subject: [PATCH] etc --- alacritty/.config/alacritty/alacritty.yml | 2 +- nvim/.config/nvim/plugin/packer_compiled.lua | 4 ++-- tmux/.config/tmux/tmux.conf | 13 +++---------- zsh/.config/zsh/.zshrc | 3 --- zsh/.config/zsh/includes/aliases | 0 zsh/.config/zsh/includes/bun | 8 ++++++++ zsh/.config/zsh/includes/environment | 0 zsh/.config/zsh/includes/nvm | 5 ++--- zsh/.config/zsh/includes/prompt | 0 zsh/.zshrc | 6 +++--- 10 files changed, 19 insertions(+), 22 deletions(-) mode change 100644 => 100755 zsh/.config/zsh/includes/aliases create mode 100755 zsh/.config/zsh/includes/bun mode change 100644 => 100755 zsh/.config/zsh/includes/environment mode change 100644 => 100755 zsh/.config/zsh/includes/nvm mode change 100644 => 100755 zsh/.config/zsh/includes/prompt diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index 79f4883..2fb8d0a 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -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) # diff --git a/nvim/.config/nvim/plugin/packer_compiled.lua b/nvim/.config/nvim/plugin/packer_compiled.lua index 41a68ba..259946c 100644 --- a/nvim/.config/nvim/plugin/packer_compiled.lua +++ b/nvim/.config/nvim/plugin/packer_compiled.lua @@ -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 diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf index 37220cf..94fb35c 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/.config/tmux/tmux.conf @@ -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 diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index e261c2c..fe5e216 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -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" diff --git a/zsh/.config/zsh/includes/aliases b/zsh/.config/zsh/includes/aliases old mode 100644 new mode 100755 diff --git a/zsh/.config/zsh/includes/bun b/zsh/.config/zsh/includes/bun new file mode 100755 index 0000000..d2c00a1 --- /dev/null +++ b/zsh/.config/zsh/includes/bun @@ -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" diff --git a/zsh/.config/zsh/includes/environment b/zsh/.config/zsh/includes/environment old mode 100644 new mode 100755 diff --git a/zsh/.config/zsh/includes/nvm b/zsh/.config/zsh/includes/nvm old mode 100644 new mode 100755 index 53f3773..e400c88 --- a/zsh/.config/zsh/includes/nvm +++ b/zsh/.config/zsh/includes/nvm @@ -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 diff --git a/zsh/.config/zsh/includes/prompt b/zsh/.config/zsh/includes/prompt old mode 100644 new mode 100755 diff --git a/zsh/.zshrc b/zsh/.zshrc index d93066e..4b865a8 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -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