Compare commits
13 Commits
theme-swit
...
11d311dc5d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
11d311dc5d | ||
|
|
d6bed612d8 | ||
|
|
f82c4c7472 | ||
|
|
e884dc09e1 | ||
|
|
8db644bb0a | ||
|
|
1fab6dcf8e | ||
|
|
05fb14de24 | ||
|
|
60b42e4a14 | ||
|
|
b00ab02e0a | ||
|
|
b5b32cf017 | ||
|
|
9213bee290 | ||
|
|
fbd5e4214b | ||
|
|
3bdad1352c |
65
README.md
65
README.md
@@ -1,33 +1,44 @@
|
|||||||
# dotfiles, plus scripts for box setup
|
# repo containing configs and scripts to set up a box
|
||||||
|
|
||||||
### prereqs
|
|
||||||
- zsh and git installed
|
|
||||||
- git clone this repo
|
|
||||||
|
|
||||||
#### specific prereqs, linux distros
|
|
||||||
- sudo access is configured for current user
|
|
||||||
|
|
||||||
#### specific prereqs, macos
|
|
||||||
- install the package manager, [homebrew](https://brew.sh/)
|
|
||||||
- for aerospace window manager, have only 1 workspace/desktop
|
|
||||||
- manual settings, refer to [ref/macos-system-settings](ref/macos-system-settings.txt)
|
|
||||||
|
|
||||||
### script run
|
### script run
|
||||||
- to do the full setup, from git root dir, run: `./box_setup.sh`
|
- fulfill prerequisites below
|
||||||
- to copy dotfiles only, from git root dir, run: `./copy_dotfiles.sh`
|
- git clone this repo
|
||||||
|
- from the repo's root directory, run `./box_setup <OS name>`
|
||||||
|
|
||||||
### after script run
|
### prerequisites
|
||||||
- complete manual actions specified in [ref/post-run](ref/post-run.md)
|
- package manager is configured (i.e. source repos, mirrors, etc. configured)
|
||||||
|
- zsh is installed (scripts are written for zsh)
|
||||||
|
- sudo access is configured for current user (as of 2025-01-27, not needed on macos)
|
||||||
|
- system-specific items below are fulfilled
|
||||||
|
|
||||||
------------------------------------------------------------------------------------------
|
##### prereqs, os specific, linux-placeholder
|
||||||
|
- (currently none)
|
||||||
|
|
||||||
|
##### prereqs, os specific, macos
|
||||||
|
- install the package manager, [homebrew](https://brew.sh/)
|
||||||
|
- for yabai window manager (so as to not mess with SIP settings)
|
||||||
|
- create 9 spaces/desktops
|
||||||
|
- system settings > keyboard shortcuts: set keys to switch between spaces/desktops
|
||||||
|
- system settings > desktop/dock/mission-control:
|
||||||
|
- `click wallpaper to reveal desktop`: set to "only in stage manager"
|
||||||
|
- all `drag windows to corner/edge/place` types of options: disabled
|
||||||
|
- `rearrange spaces based on recent use`: disabled
|
||||||
|
- `when switch to app... switch to space with open windows of app`: disabled
|
||||||
|
- `displays have separate spaces`: enabled
|
||||||
|
- `show files on desktop`: enabled
|
||||||
|
|
||||||
### todo items
|
### todo items
|
||||||
- choose window manager for linux, then configure
|
- add logic to the main run script to handle cloning of this repo
|
||||||
- config for: terminal (ghostty); shell; mpd, mpc, ncmpcpp; mpv
|
- config for window manager for linux (first, decide which wm to use)
|
||||||
- decide on docker? or alternatives like podman? any license concerns?
|
- config for terminal emulator (currently ghostty)
|
||||||
- switch installation approach, use csv file with programs to install, install types,
|
- config for mpd, mpc, ncmpcpp
|
||||||
any extra flags/opts, comments
|
- config for mpv
|
||||||
- regarding the system-types idea i'd started to build in already, maybe have a
|
- config for gimp, `src_files/.config/GIMP` (dir)
|
||||||
column for filtering in the csv file, or just have multiple csv files corresponding
|
- set things in gtkrc only? still need to nest that within a sub dir?
|
||||||
to a base/core install, a music-studio install, a employer/work machine, etc.
|
- or configure in gimp, copy resulting dir to `src_files/.config/GIMP`, call it a day
|
||||||
- add command in tmux to perform cd to a given dir in all windows of the current session
|
- maybe build in flags/logic for skipping certain installs/builds (and maybe configs?)
|
||||||
|
on a given system (i.e. don't install on a company box, on a server, etc.)
|
||||||
|
- decide on and implement approach for languages and versioning
|
||||||
|
- asdf, or language-specific version managers?
|
||||||
|
- docker? or alternatives like podman? any license concerns?
|
||||||
|
- hybrid of the above?
|
||||||
|
|||||||
42
box_setup
Executable file
42
box_setup
Executable file
@@ -0,0 +1,42 @@
|
|||||||
|
#!/bin/zsh
|
||||||
|
|
||||||
|
[[ -z $1 ]] &&
|
||||||
|
echo "OS must be passed as an arg (options: arch, artix, debian, macos)" &&
|
||||||
|
echo "example: ./box_setup arch" &&
|
||||||
|
exit 1
|
||||||
|
|
||||||
|
# set env vars for installs
|
||||||
|
local install_cmd=''
|
||||||
|
local update_pkg_manager_and_defs_cmd=''
|
||||||
|
local update_pkgs_cmd=''
|
||||||
|
case $1 in
|
||||||
|
(arch | artix)
|
||||||
|
install_cmd="sudo pacman -S"
|
||||||
|
update_pkg_manager_and_defs_cmd='' # don't; update system instead?
|
||||||
|
update_pkgs_cmd='sudo pacman -Syu'
|
||||||
|
;;
|
||||||
|
(debian)
|
||||||
|
install_cmd="sudo apt install"
|
||||||
|
update_pkg_manager_and_defs_cmd='sudo apt update'
|
||||||
|
update_pkgs_cmd='sudo apt upgrade'
|
||||||
|
;;
|
||||||
|
(macos)
|
||||||
|
install_cmd="brew install"
|
||||||
|
update_pkg_manager_and_defs_cmd='brew update'
|
||||||
|
update_pkgs_cmd='brew upgrade'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
export BOX_SETUP_INSTALL_COMMAND="$install_cmd"
|
||||||
|
export BOX_SETUP_UPDATE_PKG_MANAGER_AND_DEFS_CMD="$update_pkg_manager_and_defs_cmd"
|
||||||
|
export BOX_SETUP_UPDATE_PKGS_CMD="$update_pkgs_cmd"
|
||||||
|
|
||||||
|
# make dirs and copy configs/dotfiles
|
||||||
|
source ./src_files/.config/zsh/.zshenv
|
||||||
|
./make_dirs
|
||||||
|
./copy_configs
|
||||||
|
|
||||||
|
# install programs
|
||||||
|
source $ZDOTDIR/.zshenv
|
||||||
|
source $ZDOTDIR/.zshrc
|
||||||
|
./install_programs
|
||||||
58
box_setup.sh
58
box_setup.sh
@@ -1,58 +0,0 @@
|
|||||||
#!/bin/zsh
|
|
||||||
|
|
||||||
[[ $1 = "--help" ]] && {
|
|
||||||
echo "\nusage: ./box_setup.sh [system-type]"
|
|
||||||
echo "\nsystem-type options: personal, studio-music, work-placeholder"
|
|
||||||
echo "\nexamples:\n ./box_setup.sh\n ./box_setup.sh studio-music\n"
|
|
||||||
exit 0
|
|
||||||
}
|
|
||||||
|
|
||||||
# determine OS and, if linux, distro
|
|
||||||
[[ "$OSTYPE" = *"darwin"* ]] && setup_os="macos" || {
|
|
||||||
[[ "$OSTYPE" = *"linux"* ]] && setup_os="linux" && {
|
|
||||||
[[ -f /etc/os-release ]] && . /etc/os-release
|
|
||||||
setup_distro=$(echo "${NAME%% *}" | tr '[:upper:]' '[:lower:]')
|
|
||||||
[[ -z "$setup_distro" ]] && echo "OS: linux; distro not detected" && exit 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
[[ -z "$setup_os" ]] && echo "OS not detected" && exit 1
|
|
||||||
|
|
||||||
# set package manager commands for installs
|
|
||||||
[[ "$setup_os" = "macos" ]] && {
|
|
||||||
install_cmd="brew install"
|
|
||||||
update_pkg_manager_and_defs_cmd='brew update'
|
|
||||||
update_pkgs_cmd='brew upgrade'
|
|
||||||
} || {
|
|
||||||
[[ "$setup_os" = "linux" ]] && {
|
|
||||||
case $setup_distro in
|
|
||||||
(arch | artix)
|
|
||||||
install_cmd="sudo pacman -S"
|
|
||||||
update_pkg_manager_and_defs_cmd='' # don't; update system instead?
|
|
||||||
update_pkgs_cmd='sudo pacman -Syu'
|
|
||||||
;;
|
|
||||||
(debian)
|
|
||||||
install_cmd="sudo apt install"
|
|
||||||
update_pkg_manager_and_defs_cmd='sudo apt update'
|
|
||||||
update_pkgs_cmd='sudo apt upgrade'
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# export vars for scripts
|
|
||||||
export BOX_SETUP_OS="$setup_os"
|
|
||||||
export BOX_SETUP_DISTRO="$setup_distro"
|
|
||||||
export BOX_SETUP_INSTALL_COMMAND="$install_cmd"
|
|
||||||
export BOX_SETUP_UPDATE_PKG_MANAGER_AND_DEFS_CMD="$update_pkg_manager_and_defs_cmd"
|
|
||||||
export BOX_SETUP_UPDATE_PKGS_CMD="$update_pkgs_cmd"
|
|
||||||
|
|
||||||
# make dirs and copy configs/dotfiles
|
|
||||||
source ./src_files/.config/zsh/.zshenv
|
|
||||||
./make_dirs.sh
|
|
||||||
./copy_dotfiles.sh $1
|
|
||||||
|
|
||||||
# install programs
|
|
||||||
source $ZDOTDIR/.zshenv
|
|
||||||
source $ZDOTDIR/.zshrc
|
|
||||||
./install_programs.sh $1
|
|
||||||
|
|
||||||
49
copy_configs
Executable file
49
copy_configs
Executable file
@@ -0,0 +1,49 @@
|
|||||||
|
#!/bin/zsh
|
||||||
|
|
||||||
|
execute() { echo "executing: $@" && "$@" }
|
||||||
|
|
||||||
|
copy_file() {
|
||||||
|
local from=$1
|
||||||
|
local to=$2
|
||||||
|
local filename=$(basename $from)
|
||||||
|
[[ -e $to/$filename ]] && execute rm $to/$filename
|
||||||
|
execute cp -p $from $to/$filename
|
||||||
|
}
|
||||||
|
|
||||||
|
copy_dir() {
|
||||||
|
local from=$1
|
||||||
|
local to=$2
|
||||||
|
pushd $from > /dev/null
|
||||||
|
local directories=(`find . -mindepth 1 -maxdepth 1 -type d`)
|
||||||
|
for dir in $directories; do
|
||||||
|
[[ -d $to/$dir ]] && execute rm -rf $to/$dir
|
||||||
|
execute cp -rp $dir $to/$dir
|
||||||
|
done
|
||||||
|
local files=(`find . -mindepth 1 -maxdepth 1 -type f`)
|
||||||
|
for file in $files; do
|
||||||
|
copy_file $file $to
|
||||||
|
done
|
||||||
|
popd > /dev/null
|
||||||
|
}
|
||||||
|
|
||||||
|
link_dir() {
|
||||||
|
local src_dir=$1
|
||||||
|
local link_dir=$2
|
||||||
|
[[ -h "$link_dir" ]] && rm $link_dir
|
||||||
|
[[ -d "$link_dir" ]] && rm -rf $link_dir
|
||||||
|
echo "sym-linking $link_dir -> $src_dir"
|
||||||
|
ln -s $src_dir $link_dir
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "---- copying dotfiles -------------------------"
|
||||||
|
|
||||||
|
copy_file src_files/.config/zsh/.zshenv $HOME # duplicate, copy anyway, ensures $ZDOTDIR
|
||||||
|
|
||||||
|
copy_dir src_files/.config $XDG_CONFIG_HOME
|
||||||
|
copy_dir src_files/.local/bin $DIR_BIN
|
||||||
|
copy_dir src_files/.local/scripts $DIR_SCRIPTS
|
||||||
|
|
||||||
|
# on macos, gimp defaults to app-support, so sym-link to actual config
|
||||||
|
[[ "$BOX_SETUP_OS" = "macos" ]] &&
|
||||||
|
link_dir "$XDG_CONFIG_HOME/GIMP" "$HOME/Library/Application Support/GIMP"
|
||||||
|
|
||||||
@@ -1,55 +0,0 @@
|
|||||||
#!/bin/zsh
|
|
||||||
|
|
||||||
echo_and_execute() { echo "executing: $@" && "$@" }
|
|
||||||
|
|
||||||
copy_file() {
|
|
||||||
local from=$1
|
|
||||||
local to=$2
|
|
||||||
local filename=$(basename $from)
|
|
||||||
[[ -e $to/$filename ]] && rm $to/$filename
|
|
||||||
echo_and_execute cp -p $from $to/$filename
|
|
||||||
}
|
|
||||||
|
|
||||||
copy_dir() {
|
|
||||||
local from=$1
|
|
||||||
local to=$2
|
|
||||||
pushd $from > /dev/null
|
|
||||||
local directories=(`find . -mindepth 1 -maxdepth 1 -type d`)
|
|
||||||
for dir in $directories; do
|
|
||||||
[[ -d $to/$dir ]] && rm -rf $to/$dir
|
|
||||||
echo_and_execute cp -rp $dir $to/$dir
|
|
||||||
done
|
|
||||||
local files=(`find . -mindepth 1 -maxdepth 1 -type f`)
|
|
||||||
for file in $files; do
|
|
||||||
copy_file $file $to
|
|
||||||
done
|
|
||||||
popd > /dev/null
|
|
||||||
}
|
|
||||||
|
|
||||||
link_dir() {
|
|
||||||
local src_dir=$1
|
|
||||||
local link_dir=$2
|
|
||||||
[[ -h "$link_dir" ]] && rm $link_dir
|
|
||||||
[[ -d "$link_dir" ]] && rm -rf $link_dir
|
|
||||||
echo_and_execute ln -s $src_dir $link_dir
|
|
||||||
}
|
|
||||||
|
|
||||||
echo "---- copying dotfiles ------------------------------------------------"
|
|
||||||
|
|
||||||
copy_file src_files/.config/zsh/.zshenv $HOME # duplicate, copy anyway, ensures $ZDOTDIR
|
|
||||||
|
|
||||||
copy_dir src_files/.config $XDG_CONFIG_HOME
|
|
||||||
copy_dir src_files/.local/bin $DIR_BIN
|
|
||||||
[[ "$OSTYPE" = *"darwin"* ]] && copy_dir src_files/bin_overrides_macos $DIR_BIN
|
|
||||||
copy_dir src_files/.local/scripts $DIR_SCRIPTS
|
|
||||||
|
|
||||||
for obs_dir in "${OBSIDIAN_WORKSPACES_TO_CONFIGURE[@]}"; do
|
|
||||||
[[ ! -d "$obs_dir/.obsidian" ]] && mkdir "$obs_dir/.obsidian"
|
|
||||||
copy_dir $XDG_CONFIG_HOME/obsidian "$obs_dir/.obsidian"
|
|
||||||
done
|
|
||||||
|
|
||||||
# [[ $1 = "studio-music" ]] {
|
|
||||||
# [[ "$OSTYPE" = *"darwin"* ]] &&
|
|
||||||
# link_dir "$XDG_CONFIG_HOME/REAPER" "$HOME/Library/Application Support/REAPER" # TODO: get reaper config set up
|
|
||||||
# }
|
|
||||||
|
|
||||||
22
install_programs
Executable file
22
install_programs
Executable file
@@ -0,0 +1,22 @@
|
|||||||
|
#!/bin/zsh
|
||||||
|
|
||||||
|
local single_script_filter=""
|
||||||
|
|
||||||
|
while [[ $# > 0 ]]; do
|
||||||
|
single_script_filter="$1" # if using param, export BOX_SETUP_OS first if needed
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "---- installing programs ----------------------"
|
||||||
|
|
||||||
|
local scripts=$(find ./installs_and_builds -maxdepth 1 -mindepth 1 -type f | sort)
|
||||||
|
for script in ${=scripts}; do
|
||||||
|
if [[ -x $script ]]; then
|
||||||
|
if echo "$script" | grep -qv "$single_script_filter"; then
|
||||||
|
continue # $single_script_filter set, ignore others
|
||||||
|
fi
|
||||||
|
echo "executing: $script"
|
||||||
|
./$script
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
#!/bin/zsh
|
|
||||||
|
|
||||||
find_scripts_in_dir() {
|
|
||||||
echo $(find $1 -maxdepth 1 -mindepth 1 -type f | sort)
|
|
||||||
}
|
|
||||||
|
|
||||||
install_scripts_from_list() {
|
|
||||||
for script in $@; do
|
|
||||||
if [[ -x $script ]]; then
|
|
||||||
echo "executing: $script"
|
|
||||||
./$script
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
system_types_list="base"
|
|
||||||
scripts_from_dir=($(find_scripts_in_dir "./installs_and_builds"))
|
|
||||||
[[ $1 = "personal" ]] && {
|
|
||||||
system_types_list+=", personal"
|
|
||||||
scripts_from_dir+=($(find_scripts_in_dir "./installs_and_builds/personal"))
|
|
||||||
}
|
|
||||||
[[ $1 = "studio-music" ]] && {
|
|
||||||
system_types_list+=", studio-music"
|
|
||||||
scripts_from_dir+=($(find_scripts_in_dir "./installs_and_builds/studio_music"))
|
|
||||||
}
|
|
||||||
[[ $1 = "work-placeholder" ]] && {
|
|
||||||
system_types_list+=", work-placeholder"
|
|
||||||
scripts_from_dir+=($(find_scripts_in_dir "./installs_and_builds/work_placeholder"))
|
|
||||||
}
|
|
||||||
|
|
||||||
echo "---- installing programs ---------------------------------------------"
|
|
||||||
echo "-------- for system types: $system_types_list"
|
|
||||||
install_scripts_from_list "${scripts_from_dir[@]}"
|
|
||||||
|
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
#!/bin/zsh
|
#!/bin/zsh
|
||||||
|
|
||||||
install_neovim_dir=$HOME/.local/build/neovim
|
local neovim_dir=$HOME/.local/build/neovim
|
||||||
install_neovim_version="v0.10.3"
|
local neovim_version="v0.10.3"
|
||||||
[ ! -z $NVIM_VERSION ] && install_neovim_version="$NVIM_VERSION"
|
[ ! -z $NVIM_VERSION ] && neovim_version="$NVIM_VERSION"
|
||||||
echo "install_neovim_version: \"$install_neovim_version\""
|
echo "neovim_version: \"$neovim_version\""
|
||||||
|
|
||||||
[ ! -d $install_neovim_dir ] && git clone https://github.com/neovim/neovim.git $install_neovim_dir
|
[ ! -d $neovim_dir ] && git clone https://github.com/neovim/neovim.git $neovim_dir
|
||||||
git -C $install_neovim_dir fetch --all
|
git -C $neovim_dir fetch --all
|
||||||
git -C $install_neovim_dir checkout $install_neovim_version
|
git -C $neovim_dir checkout $neovim_version
|
||||||
|
|
||||||
make -C $install_neovim_dir clean
|
make -C $neovim_dir clean
|
||||||
make -C $install_neovim_dir CMAKE_BUILD_TYPE=RelWithDebInfo
|
make -C $neovim_dir CMAKE_BUILD_TYPE=RelWithDebInfo
|
||||||
sudo make -C $install_neovim_dir install
|
sudo make -C $neovim_dir install
|
||||||
|
|
||||||
# from primeagen's dev repo, uncomment/edit as needed
|
# from primeagen's dev repo, uncomment/edit as needed
|
||||||
# git clone https://github.com/ThePrimeagen/harpoon.git $HOME/personal/harpoon
|
# git clone https://github.com/ThePrimeagen/harpoon.git $HOME/personal/harpoon
|
||||||
|
|||||||
@@ -12,16 +12,5 @@ ${=BOX_SETUP_INSTALL_COMMAND} \
|
|||||||
grep \
|
grep \
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
||||||
utils_package_name_pandoc="pandoc"
|
|
||||||
case $BOX_SETUP_DISTRO in
|
|
||||||
(arch | alpine)
|
|
||||||
utils_package_name_pandoc="pandoc-cli"
|
|
||||||
;;
|
|
||||||
(artix)
|
|
||||||
utils_package_name_pandoc="pandoc-bin"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
${=BOX_SETUP_INSTALL_COMMAND} $utils_package_name_pandoc
|
|
||||||
|
|
||||||
[[ "$BOX_SETUP_OS" = "macos" ]] &&
|
[[ "$BOX_SETUP_OS" = "macos" ]] &&
|
||||||
${=BOX_SETUP_INSTALL_COMMAND} coreutils findutils
|
${=BOX_SETUP_INSTALL_COMMAND} coreutils
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/zsh
|
#!/bin/zsh
|
||||||
|
|
||||||
install_option_prefix=''
|
local option_prefix=''
|
||||||
[[ "$BOX_SETUP_OS" = "macos" ]] && install_option_prefix='--cask'
|
[[ "$BOX_SETUP_OS" = "macos" ]] && option_prefix='--cask'
|
||||||
# NOTE: ghostty not currently in debian repos, maybe build from source
|
# NOTE: ghostty not currently in debian repos, maybe build from source
|
||||||
${=BOX_SETUP_INSTALL_COMMAND} "$install_option_prefix" ghostty
|
${=BOX_SETUP_INSTALL_COMMAND} "$option_prefix" ghostty
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
#!/bin/zsh
|
#!/bin/zsh
|
||||||
|
|
||||||
linux_wm_and_utils() {
|
local linux_wm_and_utils() {
|
||||||
# TODO: pick wm for linux; options: dwm, i3, others?
|
# TODO: pick wm for linux; options: dwm, i3, others?
|
||||||
echo "linux_wm_and_utils not yet implemented"
|
echo "linux_wm_and_utils not yet implemented"
|
||||||
}
|
}
|
||||||
|
|
||||||
macos_wm_and_utils() {
|
local macos_wm_and_utils() {
|
||||||
|
brew install koekeishiya/formulae/yabai
|
||||||
brew install koekeishiya/formulae/skhd
|
brew install koekeishiya/formulae/skhd
|
||||||
skhd --start-service
|
skhd --start-service
|
||||||
|
yabai --start-service
|
||||||
sleep 14 # time to give permission in accessibility settings
|
sleep 14 # time to give permission in accessibility settings
|
||||||
skhd --restart-service
|
skhd --restart-service
|
||||||
|
yabai --restart-service
|
||||||
# NOTE: currently, aerospace seems to need system restart to take effect
|
|
||||||
brew install --cask nikitabobko/tap/aerospace
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[[ "$BOX_SETUP_OS" = "macos" ]] && macos_wm_and_utils || linux_wm_and_utils
|
[[ "$BOX_SETUP_OS" = "macos" ]] && macos_wm_and_utils || linux_wm_and_utils
|
||||||
|
|||||||
@@ -1,10 +1,8 @@
|
|||||||
#!/bin/zsh
|
#!/bin/zsh
|
||||||
|
|
||||||
# TODO: get browser config and install set up
|
# TODO: replace firefox with brave or another browser
|
||||||
# current idea: qutebrowser for general, tor for sensitive, brave as a backup option
|
# local option_prefix=''
|
||||||
|
# [[ "$BOX_SETUP_OS" = "macos" ]] && option_prefix='--cask'
|
||||||
# install_option_prefix=''
|
# local firefox_package_name='firefox'
|
||||||
# [[ "$BOX_SETUP_OS" = "macos" ]] && install_option_prefix='--cask'
|
# [[ "$BOX_SETUP_OS" = "debian" ]] && firefox_package_name='firefox-esr'
|
||||||
# firefox_package_name='firefox'
|
# ${=BOX_SETUP_INSTALL_COMMAND} "$option_prefix" "$firefox_package_name"
|
||||||
# [[ "$BOX_SETUP_DISTRO" = "debian" ]] && firefox_package_name='firefox-esr'
|
|
||||||
# ${=BOX_SETUP_INSTALL_COMMAND} "$install_option_prefix" "$firefox_package_name"
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/zsh
|
#!/bin/zsh
|
||||||
|
|
||||||
# only audio editor(s) in this file; daws are handled separately
|
# only audio editor(s) in this file; daws are handled separately
|
||||||
install_option_prefix=''
|
local option_prefix=''
|
||||||
[[ "$BOX_SETUP_OS" = "macos" ]] && install_option_prefix='--cask'
|
[[ "$BOX_SETUP_OS" = "macos" ]] && option_prefix='--cask'
|
||||||
${=BOX_SETUP_INSTALL_COMMAND} "$install_option_prefix" audacity
|
${=BOX_SETUP_INSTALL_COMMAND} "$option_prefix" audacity
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/zsh
|
#!/bin/zsh
|
||||||
|
|
||||||
install_option_prefix=''
|
local option_prefix=''
|
||||||
[[ "$BOX_SETUP_OS" = "macos" ]] && install_option_prefix='--cask'
|
[[ "$BOX_SETUP_OS" = "macos" ]] && option_prefix='--cask'
|
||||||
${=BOX_SETUP_INSTALL_COMMAND} "$install_option_prefix" gimp
|
${=BOX_SETUP_INSTALL_COMMAND} "$option_prefix" gimp
|
||||||
|
|
||||||
# ${=BOX_SETUP_INSTALL_COMMAND} imagemagick # TODO: consider this program too
|
# ${=BOX_SETUP_INSTALL_COMMAND} imagemagick # TODO: consider this program too
|
||||||
|
|||||||
@@ -7,7 +7,15 @@ setup_docker_on_debian() {
|
|||||||
echo "setup_docker_on_debian function not implemented"
|
echo "setup_docker_on_debian function not implemented"
|
||||||
}
|
}
|
||||||
|
|
||||||
# TODO: decide on docker vs others
|
# TODO: decide on docker vs others; below is included just for reference
|
||||||
[[ "$BOX_SETUP_DISTRO" = "debian" ]] && setup_docker_on_debian || {
|
# case $BOX_SETUP_OS in
|
||||||
${=BOX_SETUP_INSTALL_COMMAND} docker
|
# (arch | artix)
|
||||||
}
|
# ${=BOX_SETUP_INSTALL_COMMAND} docker
|
||||||
|
# ;;
|
||||||
|
# (debian)
|
||||||
|
# setup_docker_on_debian
|
||||||
|
# ;;
|
||||||
|
# (macos)
|
||||||
|
# ${=BOX_SETUP_INSTALL_COMMAND} docker
|
||||||
|
# ;;
|
||||||
|
# esac
|
||||||
|
|||||||
@@ -1,13 +1,11 @@
|
|||||||
#!/bin/zsh
|
#!/bin/zsh
|
||||||
|
|
||||||
[[ "$BOX_SETUP_OS" != "macos" ]] && {
|
|
||||||
${=BOX_SETUP_INSTALL_COMMAND} gcc g++ clang clang++
|
|
||||||
}
|
|
||||||
|
|
||||||
# TODO: review and decide if the things below are needed
|
# TODO: review and decide if the things below are needed
|
||||||
# install_lua_package="lua5.1"
|
|
||||||
#[[ "$BOX_SETUP_OS" = "macos" ]] && install_lua_package="lua@5.1"
|
#local lua_package="lua5.1"
|
||||||
#${=BOX_SETUP_INSTALL_COMMAND} "$install_lua_package" liblua5.1-0-dev
|
#[[ "$BOX_SETUP_OS" = "macos" ]] && lua_package="lua@5.1"
|
||||||
|
|
||||||
|
#${=BOX_SETUP_INSTALL_COMMAND} "$lua_package" liblua5.1-0-dev
|
||||||
|
|
||||||
# TODO: do i want to install luarocks? lazy.nvim plugin manager currently expects it
|
# TODO: do i want to install luarocks? lazy.nvim plugin manager currently expects it
|
||||||
#luarocks install luacheck
|
#luarocks install luacheck
|
||||||
|
|||||||
23
make_dirs
Executable file
23
make_dirs
Executable file
@@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/zsh
|
||||||
|
|
||||||
|
source ./src_files/.config/zsh/.zshenv # ensure env vars set for use below
|
||||||
|
|
||||||
|
# some standard/common dirs, some overlap/use in XDG dirs
|
||||||
|
[[ ! -d "$DIR_LOCAL" ]] && mkdir "$DIR_LOCAL"
|
||||||
|
[[ ! -d "$DIR_BIN" ]] && mkdir "$DIR_BIN"
|
||||||
|
[[ ! -d "$DIR_BUILD" ]] && mkdir "$DIR_BUILD"
|
||||||
|
[[ ! -d "$DIR_SCRIPTS" ]] && mkdir "$DIR_SCRIPTS"
|
||||||
|
[[ ! -d "$DIR_TMP" ]] && mkdir "$DIR_TMP"
|
||||||
|
|
||||||
|
# dirs related to XDG Base Directory specification
|
||||||
|
[[ ! -d "$XDG_CONFIG_HOME" ]] && mkdir "$XDG_CONFIG_HOME"
|
||||||
|
[[ ! -d "$XDG_CACHE_HOME" ]] && mkdir "$XDG_CACHE_HOME"
|
||||||
|
[[ ! -d "$XDG_DATA_HOME" ]] && mkdir "$XDG_DATA_HOME"
|
||||||
|
[[ ! -d "$XDG_STATE_HOME" ]] && mkdir "$XDG_STATE_HOME"
|
||||||
|
|
||||||
|
# dirs for how i'm organizing my system
|
||||||
|
[[ ! -d "$DIR_HOME_BOX" ]] && mkdir $DIR_HOME_BOX
|
||||||
|
[[ ! -d "$DIR_DEV" ]] && mkdir $DIR_DEV
|
||||||
|
[[ ! -d "$DIR_DEV/git" ]] && mkdir $DIR_DEV/git
|
||||||
|
[[ ! -d "$DIR_DEV/git/me" ]] && mkdir $DIR_DEV/git/me
|
||||||
|
[[ ! -d "$DIR_DEV/git/other" ]] && mkdir $DIR_DEV/git/other
|
||||||
31
make_dirs.sh
31
make_dirs.sh
@@ -1,31 +0,0 @@
|
|||||||
#!/bin/zsh
|
|
||||||
|
|
||||||
source ./src_files/.config/zsh/.zshenv # ensure env vars set for use below
|
|
||||||
|
|
||||||
# some standard/common directories, some overlap/use in XDG directories
|
|
||||||
[[ ! -d "$DIR_LOCAL" ]] && mkdir -p "$DIR_LOCAL"
|
|
||||||
[[ ! -d "$DIR_BIN" ]] && mkdir -p "$DIR_BIN"
|
|
||||||
[[ ! -d "$DIR_SCRIPTS" ]] && mkdir -p "$DIR_SCRIPTS"
|
|
||||||
[[ ! -d "$DIR_TMP" ]] && mkdir -p "$DIR_TMP"
|
|
||||||
[[ ! -d "$DIR_USER_OPT" ]] && mkdir -p "$DIR_USER_OPT"
|
|
||||||
[[ ! -d "$DIR_USER_LIB" ]] && mkdir -p "$DIR_USER_LIB"
|
|
||||||
|
|
||||||
# directories related to XDG Base Directory specification
|
|
||||||
[[ ! -d "$XDG_CONFIG_HOME" ]] && mkdir -p "$XDG_CONFIG_HOME"
|
|
||||||
[[ ! -d "$XDG_CACHE_HOME" ]] && mkdir -p "$XDG_CACHE_HOME"
|
|
||||||
[[ ! -d "$XDG_DATA_HOME" ]] && mkdir -p "$XDG_DATA_HOME"
|
|
||||||
[[ ! -d "$XDG_STATE_HOME" ]] && mkdir -p "$XDG_STATE_HOME"
|
|
||||||
|
|
||||||
# additional directories for how i'm organizing my system
|
|
||||||
[[ ! -d "$DIR_HOME_BOX" ]] && mkdir -p $DIR_HOME_BOX
|
|
||||||
[[ ! -d "$DIR_MUSIC" ]] && mkdir -p $DIR_MUSIC
|
|
||||||
[[ ! -d "$DIR_NOTES" ]] && mkdir -p $DIR_NOTES
|
|
||||||
[[ ! -d "$DIR_DEV" ]] && mkdir -p $DIR_DEV
|
|
||||||
[[ ! -d "$DIR_GIT_PROJECTS" ]] && mkdir -p $DIR_GIT_PROJECTS
|
|
||||||
[[ ! -d "$DIR_GIT_PROJECTS/me" ]] && mkdir -p $DIR_DEV/git/me
|
|
||||||
[[ ! -d "$DIR_GIT_PROJECTS/other" ]] && mkdir -p $DIR_DEV/git/other
|
|
||||||
|
|
||||||
# directories for music/audio production
|
|
||||||
[[ ! -d "$DIR_REAPER_PORTABLE_SHARED" ]] && mkdir -p $DIR_REAPER_PORTABLE_SHARED
|
|
||||||
[[ ! -d "$DIR_REAPER_PORTABLE_LINUX" ]] && mkdir -p $DIR_REAPER_PORTABLE_LINUX
|
|
||||||
[[ ! -d "$DIR_REAPER_PORTABLE_MACOS" ]] && mkdir -p $DIR_REAPER_PORTABLE_MACOS
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
// settings for manual configuration in macOS system settings app
|
|
||||||
// NOTE: some of these could be scripted, but for now i'm okay with this manual list
|
|
||||||
|
|
||||||
- desktop/dock/mission-control:
|
|
||||||
- `click wallpaper to reveal desktop`: set to "only in stage manager"
|
|
||||||
- all `drag windows to corner/edge/place` types of options: disabled
|
|
||||||
- `rearrange spaces based on recent use`: disabled
|
|
||||||
- `when switch to app... switch to space with open windows of app`: disabled
|
|
||||||
- `displays have separate spaces`: disabled
|
|
||||||
- `show files on desktop`: enabled
|
|
||||||
- `group windows by application`: enabled
|
|
||||||
|
|
||||||
- in general, just go through most pages/options and set them as desired
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# Manual steps needed after dotfile copy and/or installs
|
|
||||||
|
|
||||||
currently none, wooooo
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
# notes regarding my workflow and intended use of workspaces
|
|
||||||
|
|
||||||
## workspaces layout
|
|
||||||
|
|
||||||
idea from the ThePrimeagen: designated workspace/label/desktop per app/purpose
|
|
||||||
|
|
||||||
### current layout/plan
|
|
||||||
|
|
||||||
| workspace number | wm layout/mode |
|
|
||||||
|--------------------------------------------------------------|------------------------|
|
|
||||||
| 1. notes (stack: nvim, obsidian) | stack |
|
|
||||||
| 2. music makeing - misc | stack |
|
|
||||||
| 3. music making - daw | floating (workaround) |
|
|
||||||
| 4. drawing (currently: gimp) | stack |
|
|
||||||
| 5. music/audio listening | stack |
|
|
||||||
| 6. comms (stack: emails, chats, av/calls) | stack |
|
|
||||||
| 7. web browser | stack |
|
|
||||||
| 8. terminal (primary; one-offs & tui apps can be anywhere) | stack |
|
|
||||||
| 9. programming - misc (whatever is not in terminal) | stack |
|
|
||||||
| 0. general - misc (catch-all) | stack |
|
|
||||||
|
|
||||||
### ideas/guidelines:
|
|
||||||
- use this consistently accross all machines
|
|
||||||
- if something not applicable for a given machine, just don't have apps or screens
|
|
||||||
present, but maintain absolute position/numbering of each screen
|
|
||||||
- structure the above so that programs which i'm likely to use with one hand off of the
|
|
||||||
keyboard (i.e. to use a trackpad, mouse, stylus, etc) are on the screens that allow
|
|
||||||
for one hand (i.e. the one still on the keyboard) to navigate those screens
|
|
||||||
- for me, using peripherals with right hand, so put programs likely to be used with
|
|
||||||
peripherals where my left hand can switch to them single-handedly (screens 1 to 5)
|
|
||||||
|
|
||||||
## workflow / use notes
|
|
||||||
|
|
||||||
- related to the layout above, my approach is to run almost every window in fullscreen
|
|
||||||
- note: on macOS, this is not mac's notion of fullscreen, which basically moves
|
|
||||||
windows to new workspaces/desktops when going to fullscreen mode; instead, when i
|
|
||||||
say 'fullscreen', the idea is taking up all of the normal screen (excluding the
|
|
||||||
menu bar at the top of the screen)
|
|
||||||
- key bindings are set for moving window focus up/down (vim style: mod + k/j)
|
|
||||||
- the mental model here is that every fullscreen window is in a stack, so i can move
|
|
||||||
focus up and down the stack (and i try to maintain consistent order in stacks,
|
|
||||||
e.g. in the comms workspace, email is always on the bottom and chat apps are above)
|
|
||||||
- for apps with tabs, pair the above mental model of a stack with a mental model of a
|
|
||||||
circular list being in any position in that stack
|
|
||||||
- so, keybindings are also set for previous/next tab (vim style: mod + h/l)
|
|
||||||
- specifically, mod+h is mapped to ctrl+shift+tab and mod+l is mapped to ctrl+tab,
|
|
||||||
so it should work anywhere ctrl+tab and ctrl+shift+tab work
|
|
||||||
- all this said, it is better to keep things simple when possible and avoid having too
|
|
||||||
many windows and/or tabs open at one time; however, with the designated purpose for
|
|
||||||
each workspace and the mental models above, it rarely takes me long to find what i need
|
|
||||||
|
|
||||||
## example cases
|
|
||||||
|
|
||||||
- if i want a particular browser window, i jump to workspace 9, then move focus
|
|
||||||
up or down until i get to the window i want; if the window is right but i need
|
|
||||||
a different tab, i then just move "right or left" through my tabs
|
|
||||||
- if i want a particular music-playing app/tui, i jumpt to workspace 4 and move
|
|
||||||
focus up or down as needed to find it
|
|
||||||
- variation case: if i want a particular terminal workspace, i jump to workspace
|
|
||||||
8, but then i'm in tmux land and navigate via the methods i've set up for tmux
|
|
||||||
|
|
||||||
@@ -1,133 +0,0 @@
|
|||||||
# options commands : https://nikitabobko.github.io/AeroSpace/commands
|
|
||||||
after-startup-command = []
|
|
||||||
start-at-login = true # start aerospace at login
|
|
||||||
|
|
||||||
# ref: https://nikitabobko.github.io/AeroSpace/guide#normalization
|
|
||||||
enable-normalization-flatten-containers = true
|
|
||||||
enable-normalization-opposite-orientation-for-nested-containers = true
|
|
||||||
|
|
||||||
accordion-padding = 0 # ref: https://nikitabobko.github.io/AeroSpace/guide#layouts
|
|
||||||
|
|
||||||
default-root-container-layout = 'accordion' # tiles|accordion
|
|
||||||
default-root-container-orientation = 'vertical' # horizontal|vertical|auto
|
|
||||||
|
|
||||||
# refs: https://nikitabobko.github.io/AeroSpace/guide#on-focus-changed-callbacks
|
|
||||||
# https://nikitabobko.github.io/AeroSpace/commands#move-mouse
|
|
||||||
on-focused-monitor-changed = ['move-mouse monitor-lazy-center']
|
|
||||||
|
|
||||||
# ref: https://nikitabobko.github.io/AeroSpace/goodies#disable-hide-app
|
|
||||||
automatically-unhide-macos-hidden-apps = true
|
|
||||||
|
|
||||||
# See https://nikitabobko.github.io/AeroSpace/guide#key-mapping
|
|
||||||
[key-mapping]
|
|
||||||
preset = 'qwerty' # qwerty|dvorak|colemak
|
|
||||||
|
|
||||||
# ref: https://nikitabobko.github.io/AeroSpace/guide#assign-workspaces-to-monitors
|
|
||||||
# gaps between windows (inner-*) and between monitor edges (outer-*).
|
|
||||||
[gaps]
|
|
||||||
inner.horizontal = 0
|
|
||||||
inner.vertical = 0
|
|
||||||
outer.left = 0
|
|
||||||
outer.bottom = 0
|
|
||||||
outer.top = 0
|
|
||||||
outer.right = 0
|
|
||||||
|
|
||||||
# 'main' binding mode; ref: https://nikitabobko.github.io/AeroSpace/guide#binding-modes
|
|
||||||
[mode.main.binding] # 'main' binding mode must be always presented
|
|
||||||
# All possible keys:
|
|
||||||
# - Letters. a, b, c, ..., z
|
|
||||||
# - Numbers. 0, 1, 2, ..., 9
|
|
||||||
# - Keypad numbers. keypad0, keypad1, keypad2, ..., keypad9
|
|
||||||
# - F-keys. f1, f2, ..., f20
|
|
||||||
# - Special keys. minus, equal, period, comma, slash, backslash, quote, semicolon,
|
|
||||||
# backtick, leftSquareBracket, rightSquareBracket, space, enter, esc,
|
|
||||||
# backspace, tab, pageUp, pageDown, home, end, forwardDelete,
|
|
||||||
# sectionSign (ISO keyboards only, european keyboards only)
|
|
||||||
# - Keypad special. keypadClear, keypadDecimalMark, keypadDivide, keypadEnter, keypadEqual,
|
|
||||||
# keypadMinus, keypadMultiply, keypadPlus
|
|
||||||
# - Arrows. left, down, up, right
|
|
||||||
|
|
||||||
# All possible modifiers: cmd, alt, ctrl, shift
|
|
||||||
# All possible commands: https://nikitabobko.github.io/AeroSpace/commands
|
|
||||||
|
|
||||||
# See: https://nikitabobko.github.io/AeroSpace/commands#exec-and-forget
|
|
||||||
# You can uncomment the following lines to open up terminal with alt + enter shortcut
|
|
||||||
# (like in i3)
|
|
||||||
# alt-enter = '''exec-and-forget osascript -e '
|
|
||||||
# tell application "Terminal"
|
|
||||||
# do script
|
|
||||||
# activate
|
|
||||||
# end tell'
|
|
||||||
# '''
|
|
||||||
|
|
||||||
# See: https://nikitabobko.github.io/AeroSpace/commands#layout
|
|
||||||
alt-comma = 'layout v_accordion'
|
|
||||||
alt-period = 'layout h_tiles'
|
|
||||||
alt-slash = 'layout horizontal vertical'
|
|
||||||
|
|
||||||
# See: https://nikitabobko.github.io/AeroSpace/commands#focus
|
|
||||||
# new windows are added to the stack "below" the current, so swap up and down
|
|
||||||
alt-j = 'focus up'
|
|
||||||
alt-k = 'focus down'
|
|
||||||
# bindings: alt-l -> ctrl-tab, alt-h -> ctrl-shift-tab
|
|
||||||
# alt-l = "exec-and-forget osascript -e 'tell application \"System Events\" to key code 48 using control down'"
|
|
||||||
# alt-h = "exec-and-forget osascript -e 'tell application \"System Events\" to key code 48 using {control down, shift down}'"
|
|
||||||
|
|
||||||
|
|
||||||
# See: https://nikitabobko.github.io/AeroSpace/commands#move
|
|
||||||
# new windows are added to the stack "below" the current, so swap up and down
|
|
||||||
alt-shift-j = 'move up'
|
|
||||||
alt-shift-k = 'move down'
|
|
||||||
alt-shift-h = 'move left'
|
|
||||||
alt-shift-l = 'move right'
|
|
||||||
|
|
||||||
# See: https://nikitabobko.github.io/AeroSpace/commands#resize
|
|
||||||
alt-minus = 'resize smart -50'
|
|
||||||
alt-equal = 'resize smart +50'
|
|
||||||
|
|
||||||
# See: https://nikitabobko.github.io/AeroSpace/commands#workspace
|
|
||||||
alt-1 = 'workspace 1'
|
|
||||||
alt-2 = 'workspace 2'
|
|
||||||
alt-3 = 'workspace 3'
|
|
||||||
alt-4 = 'workspace 4'
|
|
||||||
alt-5 = 'workspace 5'
|
|
||||||
alt-6 = 'workspace 6'
|
|
||||||
alt-7 = 'workspace 7'
|
|
||||||
alt-8 = 'workspace 8'
|
|
||||||
alt-9 = 'workspace 9'
|
|
||||||
alt-0 = 'workspace 0'
|
|
||||||
|
|
||||||
# See: https://nikitabobko.github.io/AeroSpace/commands#move-node-to-workspace
|
|
||||||
alt-shift-1 = 'move-node-to-workspace 1'
|
|
||||||
alt-shift-2 = 'move-node-to-workspace 2'
|
|
||||||
alt-shift-3 = 'move-node-to-workspace 3'
|
|
||||||
alt-shift-4 = 'move-node-to-workspace 4'
|
|
||||||
alt-shift-5 = 'move-node-to-workspace 5'
|
|
||||||
alt-shift-6 = 'move-node-to-workspace 6'
|
|
||||||
alt-shift-7 = 'move-node-to-workspace 7'
|
|
||||||
alt-shift-8 = 'move-node-to-workspace 8'
|
|
||||||
alt-shift-9 = 'move-node-to-workspace 9'
|
|
||||||
alt-shift-0 = 'move-node-to-workspace 0'
|
|
||||||
|
|
||||||
# See: https://nikitabobko.github.io/AeroSpace/commands#mode
|
|
||||||
alt-shift-semicolon = 'mode service'
|
|
||||||
|
|
||||||
# 'service' binding mode declaration.
|
|
||||||
# See: https://nikitabobko.github.io/AeroSpace/guide#binding-modes
|
|
||||||
[mode.service.binding]
|
|
||||||
esc = ['reload-config', 'mode main']
|
|
||||||
backspace = ['close-all-windows-but-current', 'mode main']
|
|
||||||
|
|
||||||
r = ['flatten-workspace-tree', 'mode main'] # reset layout
|
|
||||||
f = ['flatten-workspace-tree', 'layout floating', 'mode main']
|
|
||||||
s = ['flatten-workspace-tree', 'layout v_accordion', 'mode main']
|
|
||||||
g = ['flatten-workspace-tree', 'layout h_tiles', 'mode main']
|
|
||||||
|
|
||||||
alt-shift-h = ['join-with left', 'mode main']
|
|
||||||
alt-shift-j = ['join-with down', 'mode main']
|
|
||||||
alt-shift-k = ['join-with up', 'mode main']
|
|
||||||
alt-shift-l = ['join-with right', 'mode main']
|
|
||||||
|
|
||||||
down = 'volume down'
|
|
||||||
up = 'volume up'
|
|
||||||
shift-down = ['volume set 0', 'mode main']
|
|
||||||
@@ -1,8 +1 @@
|
|||||||
font-feature = -calt, -liga, -dlig
|
font-feature = -calt, -liga, -dlig
|
||||||
|
|
||||||
macos-titlebar-proxy-icon = hidden
|
|
||||||
window-decoration = none
|
|
||||||
title = ""
|
|
||||||
|
|
||||||
# theme opts: tokyonight_night_manual, bamboo
|
|
||||||
theme = tokyonight_night_manual
|
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
# primary
|
|
||||||
background = #111c18
|
|
||||||
foreground = #C1C497
|
|
||||||
cursor-color = #D7C995
|
|
||||||
cursor-text = #000000
|
|
||||||
|
|
||||||
# normal colors
|
|
||||||
palette = 0=#23372B
|
|
||||||
palette = 1=#FF5345
|
|
||||||
palette = 2=#549e6a
|
|
||||||
palette = 3=#459451
|
|
||||||
palette = 4=#509475
|
|
||||||
palette = 5=#D2689C
|
|
||||||
palette = 6=#2DD5B7
|
|
||||||
palette = 7=#F6F5DD
|
|
||||||
|
|
||||||
# bright colors
|
|
||||||
palette = 8=#53685B
|
|
||||||
palette = 9=#db9f9c
|
|
||||||
palette = 10=#143614
|
|
||||||
palette = 11=#E5C736
|
|
||||||
palette = 12=#ACD4CF
|
|
||||||
palette = 13=#75bbb3
|
|
||||||
palette = 14=#8CD3CB
|
|
||||||
palette = 15=#9eebb3
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
# primary
|
|
||||||
background = #1a1b26
|
|
||||||
foreground = #c0caf5
|
|
||||||
cursor-color = #c0caf5
|
|
||||||
cursor-text = #1a1b26
|
|
||||||
|
|
||||||
# normal colors
|
|
||||||
palette = 0=#15161e
|
|
||||||
palette = 1=#f7768e
|
|
||||||
palette = 2=#9ece6a
|
|
||||||
palette = 3=#e0af68
|
|
||||||
palette = 4=#7aa2f7
|
|
||||||
palette = 5=#bb9af7
|
|
||||||
palette = 6=#7dcfff
|
|
||||||
palette = 7=#a9b1d6
|
|
||||||
|
|
||||||
# bright colors
|
|
||||||
palette = 8=#414868
|
|
||||||
palette = 9=#f7768e
|
|
||||||
palette = 10=#9ece6a
|
|
||||||
palette = 11=#e0af68
|
|
||||||
palette = 12=#7aa2f7
|
|
||||||
palette = 13=#bb9af7
|
|
||||||
palette = 14=#7dcfff
|
|
||||||
palette = 15=#c0caf5
|
|
||||||
|
|
||||||
# selection-background
|
|
||||||
selection-background = #283457
|
|
||||||
selection-foreground = #c0caf5
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
# GIMP colorrc
|
|
||||||
#
|
|
||||||
# This file holds a list of recently used colors.
|
|
||||||
|
|
||||||
(color-history
|
|
||||||
(color "R'G'B'A float" 16 "\1\0\200\77\1\0\200\77\1\0\200\77\0\0\200\77" 0)
|
|
||||||
(color "R'G'B'A float" 16 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200\77" 0))
|
|
||||||
|
|
||||||
# end of colorrc
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
# GIMP user context
|
|
||||||
|
|
||||||
(tool "gimp-pencil-tool")
|
|
||||||
(paint-info "gimp-pencil")
|
|
||||||
(foreground
|
|
||||||
(color "R'G'B'A float" 16 "\1\0\200\77\1\0\200\77\1\0\200\77\0\0\200\77" 0))
|
|
||||||
(background
|
|
||||||
(color "R'G'B'A float" 16 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200\77" 0))
|
|
||||||
(brush "2. Hardness 050")
|
|
||||||
(dynamics "Pressure Opacity")
|
|
||||||
(mybrush "100% Opaque")
|
|
||||||
(pattern "Pine")
|
|
||||||
(gradient "FG to BG (RGB)")
|
|
||||||
(palette "Color History")
|
|
||||||
(font "Sans-serif")
|
|
||||||
(tool-preset "Core Pointer")
|
|
||||||
|
|
||||||
# end of user context
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
# GIMP gimprc
|
|
||||||
#
|
|
||||||
# personal gimprc file, takes precedence over values in system-wide gimprc
|
|
||||||
# if changing within gimp, make sure i copy those settings into my dotfiles src_files
|
|
||||||
|
|
||||||
(prev-language "en-US")
|
|
||||||
(config-version "3.0.6")
|
|
||||||
(default-image
|
|
||||||
(width 2480)
|
|
||||||
(height 1748)
|
|
||||||
(unit pixels)
|
|
||||||
(xresolution 300)
|
|
||||||
(yresolution 300)
|
|
||||||
(resolution-unit inches)
|
|
||||||
(image-type rgb)
|
|
||||||
(precision u8-non-linear)
|
|
||||||
(color-profile NULL)
|
|
||||||
(simulation-profile NULL)
|
|
||||||
(simulation-bpc no)
|
|
||||||
(simulation-intent relative-colorimetric)
|
|
||||||
(fill-type background)
|
|
||||||
(comment ""))
|
|
||||||
(import-raw-plug-in "${gimp_plug_in_dir}/plug-ins/file-raw-placeholder/file-raw-placeholder")
|
|
||||||
(check-updates no)
|
|
||||||
(check-update-timestamp 1759871981)
|
|
||||||
(monitor-xresolution 129)
|
|
||||||
(monitor-yresolution 129)
|
|
||||||
(show-welcome-dialog no)
|
|
||||||
(fill-options
|
|
||||||
(style fg-color)
|
|
||||||
(custom-style solid-color)
|
|
||||||
(antialias yes)
|
|
||||||
(feather no)
|
|
||||||
(feather-radius 10))
|
|
||||||
(stroke-options
|
|
||||||
(style fg-color)
|
|
||||||
(custom-style solid-color)
|
|
||||||
(antialias yes)
|
|
||||||
(feather no)
|
|
||||||
(feather-radius 10)
|
|
||||||
(method line)
|
|
||||||
(width 6)
|
|
||||||
(unit pixels)
|
|
||||||
(cap-style butt)
|
|
||||||
(join-style miter)
|
|
||||||
(miter-limit 10)
|
|
||||||
(dash-offset 0)
|
|
||||||
(dash-info 0)
|
|
||||||
(emulate-brush-dynamics no))
|
|
||||||
|
|
||||||
|
|
||||||
# end of gimprc
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
(file-version 1)
|
|
||||||
(action "windows-hide-docks" "<Shift><Control>d")
|
|
||||||
(action "view-zoom-fit-in" "<Shift><Control>f")
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
# GIMP gimp-paintbrush-tool options
|
|
||||||
|
|
||||||
(background
|
|
||||||
(color "R'G'B'A float" 16 "\1\0\200\77\1\0\200\77\1\0\200\77\0\0\200\77" 0))
|
|
||||||
(brush "2. Hardness 050")
|
|
||||||
(dynamics "Pressure Opacity")
|
|
||||||
(pattern "Pine")
|
|
||||||
(gradient "FG to BG (RGB)")
|
|
||||||
(palette "Color History")
|
|
||||||
(brush-size 2.0)
|
|
||||||
(brush-hardness 0.5)
|
|
||||||
|
|
||||||
# end of gimp-paintbrush-tool options
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
# GIMP gimp-pencil-tool options
|
|
||||||
|
|
||||||
(background
|
|
||||||
(color "R'G'B'A float" 16 "\1\0\200\77\1\0\200\77\1\0\200\77\0\0\200\77" 0))
|
|
||||||
(brush "2. Hardness 050")
|
|
||||||
(dynamics "Pressure Opacity")
|
|
||||||
(pattern "Pine")
|
|
||||||
(gradient "FG to BG (RGB)")
|
|
||||||
(palette "Color History")
|
|
||||||
(brush-size 2.0)
|
|
||||||
(brush-hardness 0.5)
|
|
||||||
|
|
||||||
# end of gimp-pencil-tool options
|
|
||||||
@@ -2,8 +2,4 @@
|
|||||||
defaultBranch = master
|
defaultBranch = master
|
||||||
[user]
|
[user]
|
||||||
name = david
|
name = david
|
||||||
email = david@pinewoods.xyz
|
email = david@silverwolf.studio
|
||||||
[push]
|
|
||||||
autoSetupRemote = true
|
|
||||||
[pull]
|
|
||||||
rebase = true
|
|
||||||
|
|||||||
@@ -1,28 +1,7 @@
|
|||||||
# my own stuff/conventions
|
.tool-versions
|
||||||
.tmux-session-hydrate
|
|
||||||
zxcv*
|
|
||||||
|
|
||||||
# compilation/debug/cache/build/etc
|
|
||||||
**/build/
|
|
||||||
**/__pycache__/
|
|
||||||
*.o
|
|
||||||
*.pch
|
|
||||||
*.dSYM
|
|
||||||
|
|
||||||
# lang/package
|
|
||||||
mise*.toml
|
|
||||||
.npmrc
|
|
||||||
|
|
||||||
# opencode/agents/etc
|
|
||||||
.opencode/
|
|
||||||
opencode.json
|
|
||||||
AGENTS.md
|
|
||||||
|
|
||||||
# vim files
|
|
||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
|
.npmrc
|
||||||
# miscellaneous
|
.tmux-session-hydrate
|
||||||
|
zxcv*
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.liccor*
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
[tools]
|
|
||||||
go = "1"
|
|
||||||
python = "3"
|
|
||||||
ruby = "3"
|
|
||||||
|
|
||||||
[settings]
|
|
||||||
idiomatic_version_file_enable_tools = ["ruby"]
|
|
||||||
|
|
||||||
@@ -1,12 +1,3 @@
|
|||||||
initial_screen = "library"
|
|
||||||
library_tabs = ["playlists", "albums", "artists", "browse"]
|
|
||||||
|
|
||||||
[keybindings]
|
|
||||||
"Space" = "playpause"
|
|
||||||
|
|
||||||
##########################################################################################
|
|
||||||
# theme
|
|
||||||
|
|
||||||
# [theme] # from eltoncezar, similar to official spotify colors
|
# [theme] # from eltoncezar, similar to official spotify colors
|
||||||
# background = "#191414"
|
# background = "#191414"
|
||||||
# primary = "#FFFFFF"
|
# primary = "#FFFFFF"
|
||||||
|
|||||||
@@ -1,13 +1 @@
|
|||||||
local csGroup = vim.api.nvim_create_augroup("coreSettingsGroup", { clear = true })
|
require("david_standard")
|
||||||
local csgAutocmd = vim.api.nvim_create_autocmd
|
|
||||||
|
|
||||||
require("settings")
|
|
||||||
require("plugin_manager")
|
|
||||||
require("key_mappings")
|
|
||||||
require("theme")
|
|
||||||
|
|
||||||
csgAutocmd({"BufWritePre"}, {
|
|
||||||
group = csGroup,
|
|
||||||
pattern = "*",
|
|
||||||
command = [[%s/\s\+$//e]],
|
|
||||||
})
|
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
return {
|
|
||||||
cmd = { 'clangd' },
|
|
||||||
root_markers = { '.clangd', 'compile_commands.json' },
|
|
||||||
filetypes = { 'c', 'cpp' },
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
function SetColorSchemeWrapper(scheme)
|
||||||
|
scheme = scheme or "tokyonight-night"
|
||||||
|
vim.cmd.colorscheme(scheme)
|
||||||
|
|
||||||
|
-- Allow for transparency -- TODO: do i actually want transparency?
|
||||||
|
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||||
|
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||||
|
end
|
||||||
|
SetColorSchemeWrapper()
|
||||||
|
|
||||||
|
-- TODO: get this working as desired for different file types
|
||||||
|
-- local dsGroup = vim.api.nvim_create_augroup("DavidStandardGroup", { clear = false })
|
||||||
|
-- vim.api.nvim_create_autocmd('BufEnter', {
|
||||||
|
-- group = dsGroup,
|
||||||
|
-- callback = function()
|
||||||
|
-- if vim.bo.filetype == "zig" then
|
||||||
|
-- pcall(SetColorSchemeWrapper, "tokyonight-night")
|
||||||
|
-- else
|
||||||
|
-- pcall(SetColorSchemeWrapper, "rose-pine-main")
|
||||||
|
-- pcall(SetColorSchemeWrapper, "slate")
|
||||||
|
-- pcall(SetColorSchemeWrapper, "sorbet")
|
||||||
|
-- end
|
||||||
|
-- end
|
||||||
|
-- })
|
||||||
|
|
||||||
33
src_files/.config/nvim/lua/david_standard/init.lua
Normal file
33
src_files/.config/nvim/lua/david_standard/init.lua
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
local dsGroup = vim.api.nvim_create_augroup("DavidStandardGroup", { clear = true })
|
||||||
|
local dsgAutocmd = vim.api.nvim_create_autocmd
|
||||||
|
|
||||||
|
require("david_standard.settings")
|
||||||
|
require("david_standard.key_mappings")
|
||||||
|
require("david_standard.plugin_config")
|
||||||
|
require("david_standard.plugin_key_mappings")
|
||||||
|
require("david_standard.colorscheme_settings")
|
||||||
|
require("david_standard.lsp_enables")
|
||||||
|
|
||||||
|
dsgAutocmd({"BufWritePre"}, {
|
||||||
|
group = dsGroup,
|
||||||
|
pattern = "*",
|
||||||
|
command = [[%s/\s\+$//e]],
|
||||||
|
})
|
||||||
|
|
||||||
|
-- TODO: put this into separate file(s) for lsp stuff? if so, pass in or make new autocmd
|
||||||
|
dsgAutocmd('LspAttach', {
|
||||||
|
group = dsGroup,
|
||||||
|
callback = function(e)
|
||||||
|
local opts = { buffer = e.buf }
|
||||||
|
vim.keymap.set("n", "gd", function() vim.lsp.buf.definition() end, opts)
|
||||||
|
vim.keymap.set("n", "K", function() vim.lsp.buf.hover() end, opts)
|
||||||
|
vim.keymap.set("i", "<C-h>", function() vim.lsp.buf.signature_help() end, opts)
|
||||||
|
vim.keymap.set("n", "<leader>vdv", function() vim.diagnostic.open_float() end, opts)
|
||||||
|
vim.keymap.set("n", "<leader>vdn", function() vim.diagnostic.goto_next() end, opts)
|
||||||
|
vim.keymap.set("n", "<leader>vdp", function() vim.diagnostic.goto_prev() end, opts)
|
||||||
|
vim.keymap.set("n", "<leader>vws", function() vim.lsp.buf.workspace_symbol() end, opts)
|
||||||
|
vim.keymap.set("n", "<leader>vca", function() vim.lsp.buf.code_action() end, opts)
|
||||||
|
vim.keymap.set("n", "<leader>vrl", function() vim.lsp.buf.references() end, opts)
|
||||||
|
vim.keymap.set("n", "<leader>vrn", function() vim.lsp.buf.rename() end, opts)
|
||||||
|
end
|
||||||
|
})
|
||||||
52
src_files/.config/nvim/lua/david_standard/key_mappings.lua
Normal file
52
src_files/.config/nvim/lua/david_standard/key_mappings.lua
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
-- explore the directory of the current file (using netrw)
|
||||||
|
vim.keymap.set("n", "<leader>n", vim.cmd.Ex)
|
||||||
|
|
||||||
|
-- move selected lines up or down
|
||||||
|
vim.keymap.set("v", "J", ":m '>+1<CR>gv")
|
||||||
|
vim.keymap.set("v", "K", ":m '<-2<CR>gv")
|
||||||
|
|
||||||
|
-- vertically center cursor with half-page jumps iterating search results
|
||||||
|
vim.keymap.set("n", "<C-d>", "<C-d>zz")
|
||||||
|
vim.keymap.set("n", "<C-u>", "<C-u>zz")
|
||||||
|
vim.keymap.set("n", "n", "nzzzv")
|
||||||
|
vim.keymap.set("n", "N", "Nzzzv")
|
||||||
|
|
||||||
|
-- maintain cursor position after paragraph formatting
|
||||||
|
vim.keymap.set("n", "=ap", "ma=ap'a")
|
||||||
|
|
||||||
|
-- shortcuts for deleting into the void register
|
||||||
|
vim.keymap.set({ "n", "v" }, "<leader>d", "\"_d")
|
||||||
|
vim.keymap.set("x", "<leader>P", [["_dP]]) -- replace selected text, keep main register
|
||||||
|
|
||||||
|
-- shortcuts for using + register (system clipboard)
|
||||||
|
vim.keymap.set({ "n", "v" }, "<leader>y", [["+y]])
|
||||||
|
vim.keymap.set("n", "<leader>Y", [["+Y]])
|
||||||
|
vim.keymap.set("n", "<leader>p", [["+p]])
|
||||||
|
|
||||||
|
-- search-and-replace shortcuts
|
||||||
|
vim.keymap.set("n", "<leader>rw", [[:%s/\<<C-r><C-w>\>/<C-r><C-w>/gI<Left><Left><Left>]])
|
||||||
|
vim.keymap.set("n", "<leader>ra", [[:%s//g<Left><Left>]])
|
||||||
|
|
||||||
|
-- toggle expandtab and show message
|
||||||
|
vim.keymap.set("n", "<leader>tab", function()
|
||||||
|
if vim.opt.expandtab:get() then
|
||||||
|
vim.opt.expandtab = false
|
||||||
|
print("using actual tabs")
|
||||||
|
else
|
||||||
|
vim.opt.expandtab = true
|
||||||
|
print("using spaces in place of tabs")
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
|
-- quicker switching between panes/splits
|
||||||
|
vim.keymap.set("n", "<C-h>", [[<C-w>h]])
|
||||||
|
vim.keymap.set("n", "<C-j>", [[<C-w>j]])
|
||||||
|
vim.keymap.set("n", "<C-k>", [[<C-w>k]])
|
||||||
|
vim.keymap.set("n", "<C-l>", [[<C-w>l]])
|
||||||
|
|
||||||
|
-- TODO: learn about quickfix (:help quickfix), then maybe use these
|
||||||
|
-- vim.keymap.set("n", "<C-k>", "<cmd>cnext<CR>zz")
|
||||||
|
-- vim.keymap.set("n", "<C-j>", "<cmd>cprev<CR>zz")
|
||||||
|
-- vim.keymap.set("n", "<leader>k", "<cmd>lnext<CR>zz")
|
||||||
|
-- vim.keymap.set("n", "<leader>j", "<cmd>lprev<CR>zz")
|
||||||
|
|
||||||
10
src_files/.config/nvim/lua/david_standard/lsp_enables.lua
Normal file
10
src_files/.config/nvim/lua/david_standard/lsp_enables.lua
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
-- c
|
||||||
|
|
||||||
|
-- c++
|
||||||
|
|
||||||
|
-- ruby
|
||||||
|
vim.lsp.enable('ruby_lsp')
|
||||||
|
-- vim.lsp.enable('typeprof') -- ruby builtin/official (but still labled experimental)
|
||||||
|
-- vim.lsp.enable('standardrb')
|
||||||
|
-- vim.lsp.enable('solargraph')
|
||||||
|
-- vim.lsp.enable('herb_ls') -- targets html + ruby (erb files)
|
||||||
@@ -22,13 +22,8 @@ vim.opt.rtp:prepend(path_lazy_nvim)
|
|||||||
|
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
spec = {
|
spec = {
|
||||||
{ import = "plugins_lazy" },
|
{ import = "david_standard.plugins_lazy" },
|
||||||
},
|
},
|
||||||
checker = { enabled = false },
|
checker = { enabled = false },
|
||||||
change_detection = { notify = false },
|
change_detection = { notify = false },
|
||||||
dev = {
|
|
||||||
path = "~/dev/git/other/omarchy/plugins",
|
|
||||||
patterns = { 'LazyVim' },
|
|
||||||
fallback = false,
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
-- telescope
|
||||||
|
local builtin = require('telescope.builtin')
|
||||||
|
local custom_tscope_grep = function()
|
||||||
|
builtin.grep_string({ search = vim.fn.input("grep > ")})
|
||||||
|
end
|
||||||
|
vim.keymap.set('n', '<leader>ft', builtin.live_grep, {
|
||||||
|
desc = 'Telescope find text (live_grep)'
|
||||||
|
})
|
||||||
|
vim.keymap.set('n', '<leader>fT', custom_tscope_grep, {
|
||||||
|
desc = 'Telescope find text (grep_string)'
|
||||||
|
})
|
||||||
|
vim.keymap.set('n', '<leader>fg', builtin.git_files, {
|
||||||
|
desc = 'Telescope find git-tracked files'
|
||||||
|
})
|
||||||
|
vim.keymap.set('n', '<leader>ff', builtin.find_files, { desc = 'Telescope find files' })
|
||||||
|
vim.keymap.set('n', '<leader>fb', builtin.buffers, { desc = 'Telescope buffers' })
|
||||||
|
vim.keymap.set('n', '<leader>fh', builtin.help_tags, { desc = 'Telescope help tags' })
|
||||||
|
|
||||||
|
-- harpoon
|
||||||
|
local harpoon = require("harpoon")
|
||||||
|
vim.keymap.set("n", "<leader>hl", function()
|
||||||
|
harpoon.ui:toggle_quick_menu(harpoon:list())
|
||||||
|
end)
|
||||||
|
vim.keymap.set("n", "<leader>ha", function() harpoon:list():add() end)
|
||||||
|
vim.keymap.set("n", "<leader>hA", function() harpoon:list():prepend() end)
|
||||||
|
vim.keymap.set("n", "<leader>hn", function() harpoon:list():next() end)
|
||||||
|
vim.keymap.set("n", "<leader>hp", function() harpoon:list():prev() end)
|
||||||
|
vim.keymap.set("n", "<leader>hz", function() harpoon:list():select(1) end)
|
||||||
|
vim.keymap.set("n", "<leader>hx", function() harpoon:list():select(2) end)
|
||||||
|
vim.keymap.set("n", "<leader>hc", function() harpoon:list():select(3) end)
|
||||||
|
vim.keymap.set("n", "<leader>hv", function() harpoon:list():select(4) end)
|
||||||
|
vim.keymap.set("n", "<leader>hZ", function() harpoon:list():replace_at(1) end)
|
||||||
|
vim.keymap.set("n", "<leader>hX", function() harpoon:list():replace_at(2) end)
|
||||||
|
vim.keymap.set("n", "<leader>hC", function() harpoon:list():replace_at(3) end)
|
||||||
|
vim.keymap.set("n", "<leader>hV", function() harpoon:list():replace_at(4) end)
|
||||||
|
|
||||||
|
-- undotree
|
||||||
|
vim.keymap.set("n", "<leader>u", vim.cmd.UndotreeToggle)
|
||||||
|
|
||||||
|
-- treesitter and treesitter-context
|
||||||
|
vim.keymap.set("n", "<leader>tc", function() vim.cmd.TSContext({ "toggle" }) end)
|
||||||
|
|
||||||
|
-- fugitive (git integration)
|
||||||
|
vim.keymap.set("n", "<leader>gG", vim.cmd.Git)
|
||||||
|
vim.keymap.set("n", "<leader>gg", ":Git ") -- shortcut, arbitrary git commands
|
||||||
|
vim.keymap.set("n", "<leader>ga", function() vim.cmd.Git({ "add %"}) end)
|
||||||
|
vim.keymap.set("n", "<leader>gs", function() vim.cmd.Git({ "-p status" }) end)
|
||||||
|
vim.keymap.set("n", "<leader>gc", function() vim.cmd.Git({ "commit -a" }) end)
|
||||||
|
|
||||||
|
-- conform (formatter)
|
||||||
|
vim.keymap.set("n", "<leader>fmt", function()
|
||||||
|
require("conform").format({ bufnr = 0 })
|
||||||
|
end)
|
||||||
|
|
||||||
@@ -3,7 +3,6 @@ return {
|
|||||||
{
|
{
|
||||||
"ellisonleao/gruvbox.nvim",
|
"ellisonleao/gruvbox.nvim",
|
||||||
name = "gruvbox",
|
name = "gruvbox",
|
||||||
-- lazy = false,
|
|
||||||
-- priority = 1000,
|
-- priority = 1000,
|
||||||
opts = {
|
opts = {
|
||||||
terminal_colors = true, -- add neovim terminal colors
|
terminal_colors = true, -- add neovim terminal colors
|
||||||
@@ -46,28 +45,7 @@ return {
|
|||||||
colors.hint = colors.orange
|
colors.hint = colors.orange
|
||||||
colors.error = "#ff0000"
|
colors.error = "#ff0000"
|
||||||
colors.fg_gutter = "#9098B8"
|
colors.fg_gutter = "#9098B8"
|
||||||
end,
|
end
|
||||||
},
|
},
|
||||||
},
|
}
|
||||||
{
|
|
||||||
"tiagovla/tokyodark.nvim",
|
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
opts = {
|
|
||||||
custom_highlights = function(highlights, _palette)
|
|
||||||
highlights.Comment['fg'] = "#8a9097"
|
|
||||||
highlights.LineNr['fg'] = "#8088A8"
|
|
||||||
return highlights
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'ribru17/bamboo.nvim',
|
|
||||||
-- lazy = false,
|
|
||||||
-- priority = 1000,
|
|
||||||
config = function()
|
|
||||||
require('bamboo').setup { }
|
|
||||||
require('bamboo').load()
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
@@ -9,8 +9,9 @@ return {
|
|||||||
"hrsh7th/cmp-path",
|
"hrsh7th/cmp-path",
|
||||||
"hrsh7th/cmp-cmdline",
|
"hrsh7th/cmp-cmdline",
|
||||||
"hrsh7th/nvim-cmp",
|
"hrsh7th/nvim-cmp",
|
||||||
"L3MON4D3/LuaSnip", -- snippets, using luasnip for now
|
-- snippets, using luasnip for now
|
||||||
"saadparwaiz1/cmp_luasnip", -- snippets, using luasnip for now
|
"L3MON4D3/LuaSnip",
|
||||||
|
"saadparwaiz1/cmp_luasnip",
|
||||||
},
|
},
|
||||||
|
|
||||||
config = function()
|
config = function()
|
||||||
@@ -27,10 +28,9 @@ return {
|
|||||||
require("mason").setup()
|
require("mason").setup()
|
||||||
require("mason-lspconfig").setup({
|
require("mason-lspconfig").setup({
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
"clangd",
|
|
||||||
"lua_ls",
|
"lua_ls",
|
||||||
"ruby_lsp",
|
|
||||||
-- "gopls",
|
-- "gopls",
|
||||||
|
"ruby_lsp",
|
||||||
-- "tailwindcss",
|
-- "tailwindcss",
|
||||||
},
|
},
|
||||||
handlers = {
|
handlers = {
|
||||||
@@ -68,7 +68,7 @@ return {
|
|||||||
['<C-n>'] = cmp.mapping.select_next_item(cmp_select),
|
['<C-n>'] = cmp.mapping.select_next_item(cmp_select),
|
||||||
['<C-p>'] = cmp.mapping.select_prev_item(cmp_select),
|
['<C-p>'] = cmp.mapping.select_prev_item(cmp_select),
|
||||||
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
||||||
['<C-u>'] = cmp.mapping.scroll_docs(4),
|
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
||||||
}),
|
}),
|
||||||
snippet = {
|
snippet = {
|
||||||
expand = function(args)
|
expand = function(args)
|
||||||
@@ -86,9 +86,6 @@ return {
|
|||||||
completion = cmp.config.window.bordered(),
|
completion = cmp.config.window.bordered(),
|
||||||
documentation = cmp.config.window.bordered(),
|
documentation = cmp.config.window.bordered(),
|
||||||
},
|
},
|
||||||
performance = {
|
|
||||||
max_view_entries = 14,
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
|
|
||||||
-- `/` cmdline setup.
|
-- `/` cmdline setup.
|
||||||
@@ -113,11 +110,5 @@ return {
|
|||||||
prefix = "",
|
prefix = "",
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
end
|
||||||
-- TODO: needed? seems like neovim/nvim-lspconfig covers by default
|
|
||||||
-- vim.lsp.enable('clangd')
|
|
||||||
-- vim.lsp.enable('ruby_lsp')
|
|
||||||
-- vim.lsp.enable('standardrb')
|
|
||||||
-- vim.lsp.enable('herb_ls') -- targets html + ruby (erb files)
|
|
||||||
end,
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
local glob_patterns_find_files = {
|
||||||
|
"-g", "!**/.git/**",
|
||||||
|
"-g", "!**/build/**",
|
||||||
|
"-g", "!**/node_modules/**",
|
||||||
|
}
|
||||||
|
local glob_patterns_live_grep = {
|
||||||
|
unpack(glob_patterns_find_files), -- same for now
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
'nvim-telescope/telescope.nvim',
|
||||||
|
tag = '0.1.8',
|
||||||
|
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||||
|
opts = {
|
||||||
|
pickers = {
|
||||||
|
find_files = {
|
||||||
|
find_command = {
|
||||||
|
"rg", "--no-ignore", "--hidden", "--files",
|
||||||
|
unpack(glob_patterns_find_files),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
live_grep = {
|
||||||
|
additional_args = {
|
||||||
|
"--no-ignore", "--hidden",
|
||||||
|
unpack(glob_patterns_live_grep),
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -40,5 +40,5 @@ vim.opt.undofile = true
|
|||||||
vim.g.netrw_browse_split = 0
|
vim.g.netrw_browse_split = 0
|
||||||
vim.g.netrw_preview = 1
|
vim.g.netrw_preview = 1
|
||||||
vim.g.netrw_banner = 0
|
vim.g.netrw_banner = 0
|
||||||
vim.g.netrw_winsize = 50
|
vim.g.netrw_winsize = 25
|
||||||
|
|
||||||
@@ -1,162 +0,0 @@
|
|||||||
local kmGroup = vim.api.nvim_create_augroup("KeymappingsGroup", { clear = true })
|
|
||||||
local kmgAutocmd = vim.api.nvim_create_autocmd
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------------------
|
|
||||||
-- core
|
|
||||||
|
|
||||||
-- explore the directory of the current file (using netrw)
|
|
||||||
vim.keymap.set("n", "<leader>n", vim.cmd.Ex)
|
|
||||||
|
|
||||||
-- move selected lines up or down
|
|
||||||
vim.keymap.set("v", "J", ":m '>+1<CR>gv")
|
|
||||||
vim.keymap.set("v", "K", ":m '<-2<CR>gv")
|
|
||||||
|
|
||||||
-- vertically center cursor with half-page jumps
|
|
||||||
vim.keymap.set("n", "<C-d>", "<C-d>zz")
|
|
||||||
vim.keymap.set("n", "<C-u>", "<C-u>zz")
|
|
||||||
|
|
||||||
-- open folds when iterating search results
|
|
||||||
vim.keymap.set("n", "n", "nzv")
|
|
||||||
vim.keymap.set("n", "N", "Nzv")
|
|
||||||
|
|
||||||
-- maintain cursor position after paragraph formatting
|
|
||||||
vim.keymap.set("n", "=ap", "ma=ap'a")
|
|
||||||
|
|
||||||
-- shortcuts for deleting into the void register
|
|
||||||
vim.keymap.set({ "n", "v" }, "<leader>d", "\"_d")
|
|
||||||
vim.keymap.set("x", "<leader>P", [["_dP]]) -- replace selected text, keep main register
|
|
||||||
|
|
||||||
-- shortcuts for using + register (system clipboard)
|
|
||||||
vim.keymap.set({ "n", "v" }, "<leader>y", [["+y]])
|
|
||||||
vim.keymap.set("n", "<leader>Y", [["+Y]])
|
|
||||||
vim.keymap.set("n", "<leader>D", [["+D]])
|
|
||||||
vim.keymap.set("n", "<leader>p", [["+p]])
|
|
||||||
|
|
||||||
-- search-and-replace shortcuts
|
|
||||||
vim.keymap.set("n", "<leader>rw", [[:%s/\<<C-r><C-w>\>/<C-r><C-w>/gI<Left><Left><Left>]])
|
|
||||||
vim.keymap.set("n", "<leader>ra", [[:%s//g<Left><Left>]])
|
|
||||||
|
|
||||||
-- toggle expandtab and show message
|
|
||||||
vim.keymap.set("n", "<leader>tab", function()
|
|
||||||
if vim.opt.expandtab:get() then
|
|
||||||
vim.opt.expandtab = false
|
|
||||||
print("using actual tabs")
|
|
||||||
else
|
|
||||||
vim.opt.expandtab = true
|
|
||||||
print("using spaces in place of tabs")
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
-- quicker switching between panes/splits
|
|
||||||
vim.keymap.set("n", "<C-h>", [[<C-w>h]])
|
|
||||||
vim.keymap.set("n", "<C-j>", [[<C-w>j]])
|
|
||||||
vim.keymap.set("n", "<C-k>", [[<C-w>k]])
|
|
||||||
vim.keymap.set("n", "<C-l>", [[<C-w>l]])
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------------------
|
|
||||||
-- quickfix TODO: learn about quickfix (:help quickfix), then maybe use these
|
|
||||||
|
|
||||||
-- vim.keymap.set("n", "<C-k>", "<cmd>cnext<CR>zz")
|
|
||||||
-- vim.keymap.set("n", "<C-j>", "<cmd>cprev<CR>zz")
|
|
||||||
-- vim.keymap.set("n", "<leader>k", "<cmd>lnext<CR>zz")
|
|
||||||
-- vim.keymap.set("n", "<leader>j", "<cmd>lprev<CR>zz")
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------------------
|
|
||||||
-- debugger and debugging ui
|
|
||||||
|
|
||||||
local dap = require("dap")
|
|
||||||
vim.keymap.set("n", "<leader>bc", dap.continue, { desc = "debug: continue" })
|
|
||||||
vim.keymap.set("n", "<leader>bi", dap.step_into, { desc = "debug: step into" })
|
|
||||||
vim.keymap.set("n", "<leader>bo", dap.step_over, { desc = "debug: step over" })
|
|
||||||
vim.keymap.set("n", "<leader>bu", dap.step_out, { desc = "debug: step out" })
|
|
||||||
vim.keymap.set("n", "<leader>blb", dap.list_breakpoints, { desc = "debug: list breakpoints" })
|
|
||||||
vim.keymap.set("n", "<leader>bt", dap.toggle_breakpoint, { desc = "debug: toggle breakpoint" })
|
|
||||||
vim.keymap.set("n", "<leader>bb", dap.set_breakpoint, { desc = "debug: set breakpoint" })
|
|
||||||
|
|
||||||
vim.keymap.set("n", "<leader>bB", function()
|
|
||||||
dap.set_breakpoint(vim.fn.input("breakpoint condition: "))
|
|
||||||
end, { desc = "debug: set conditional breakpoint" })
|
|
||||||
|
|
||||||
vim.keymap.set("n", "<leader>bq", function()
|
|
||||||
dap.terminate() require("dapui").close() require("nvim-dap-virtual-text").toggle()
|
|
||||||
end, { desc = "debug: quit debugger" })
|
|
||||||
|
|
||||||
-- TODO: decide if i want these or others, add if so
|
|
||||||
-- vim.keymap.set("n", "<leader>zxcv", dap.repl.open, { desc = "open REPL" })
|
|
||||||
-- vim.keymap.set("n", "<leader>zxcv", dap.run_last, { desc = "run last" })
|
|
||||||
-- vim.keymap.set("n", "<leader>zxcv", dap.set_exception_breakpoints({ "all" }), { desc = "set exception breakpoints" })
|
|
||||||
-- local dapWidgets = require('dap.ui.widgets')
|
|
||||||
-- vim.keymap.set({'n', 'v'}, '<leader>zxcv', dapWidgets.hover)
|
|
||||||
-- vim.keymap.set({'n', 'v'}, '<leader>zxcv', dapWidgets.preview)
|
|
||||||
-- vim.keymap.set('n', '<leader>zxcv', function() dapWidgets.centered_float(dapWidgets.frames) end)
|
|
||||||
-- vim.keymap.set('n', '<leader>zxcv', function() dapWidgets.centered_float(dapWidgets.scopes) end)
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------------------
|
|
||||||
-- lsp
|
|
||||||
|
|
||||||
kmgAutocmd('LspAttach', {
|
|
||||||
group = kmGroup,
|
|
||||||
callback = function(e)
|
|
||||||
local opts = { buffer = e.buf }
|
|
||||||
vim.keymap.set("n", "gd", function() vim.lsp.buf.definition() end, opts)
|
|
||||||
vim.keymap.set("n", "K", function() vim.lsp.buf.hover() end, opts)
|
|
||||||
vim.keymap.set("i", "<C-h>", function() vim.lsp.buf.signature_help() end, opts)
|
|
||||||
vim.keymap.set("n", "<leader>vdv", function() vim.diagnostic.open_float() end, opts)
|
|
||||||
vim.keymap.set("n", "<leader>vdn", function() vim.diagnostic.goto_next() end, opts)
|
|
||||||
vim.keymap.set("n", "<leader>vdp", function() vim.diagnostic.goto_prev() end, opts)
|
|
||||||
vim.keymap.set("n", "<leader>vws", function() vim.lsp.buf.workspace_symbol() end, opts)
|
|
||||||
vim.keymap.set("n", "<leader>vca", function() vim.lsp.buf.code_action() end, opts)
|
|
||||||
vim.keymap.set("n", "<leader>vrl", function() vim.lsp.buf.references() end, opts)
|
|
||||||
vim.keymap.set("n", "<leader>vrn", function() vim.lsp.buf.rename() end, opts)
|
|
||||||
end
|
|
||||||
})
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------------------
|
|
||||||
-- plugins
|
|
||||||
|
|
||||||
-- telescope
|
|
||||||
local tscBuiltin = require('telescope.builtin')
|
|
||||||
local custom_grep_str_w_regex = function()
|
|
||||||
tscBuiltin.grep_string({ search = vim.fn.input("grep > "), use_regex = true, additional_args = "-i", })
|
|
||||||
end
|
|
||||||
vim.keymap.set('n', '<leader>ft', tscBuiltin.live_grep, { desc = 'tscope find text, live_grep' })
|
|
||||||
vim.keymap.set('n', '<leader>fT', custom_grep_str_w_regex, { desc = 'tscope find text, static grep w/regex' })
|
|
||||||
vim.keymap.set('n', '<leader>fg', tscBuiltin.git_files, { desc = 'tscope find git-tracked files' })
|
|
||||||
vim.keymap.set('n', '<leader>ff', tscBuiltin.find_files, { desc = 'tscope find files' })
|
|
||||||
vim.keymap.set('n', '<leader>fb', tscBuiltin.buffers, { desc = 'tscope buffers' })
|
|
||||||
vim.keymap.set('n', '<leader>fh', tscBuiltin.help_tags, { desc = 'tscope help tags' })
|
|
||||||
|
|
||||||
-- harpoon
|
|
||||||
local harpoon = require("harpoon")
|
|
||||||
vim.keymap.set("n", "<leader>hl", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end)
|
|
||||||
vim.keymap.set("n", "<leader>ha", function() harpoon:list():add() end)
|
|
||||||
vim.keymap.set("n", "<leader>hA", function() harpoon:list():prepend() end)
|
|
||||||
vim.keymap.set("n", "<leader>hn", function() harpoon:list():next() end)
|
|
||||||
vim.keymap.set("n", "<leader>hp", function() harpoon:list():prev() end)
|
|
||||||
vim.keymap.set("n", "<leader>hz", function() harpoon:list():select(1) end)
|
|
||||||
vim.keymap.set("n", "<leader>hx", function() harpoon:list():select(2) end)
|
|
||||||
vim.keymap.set("n", "<leader>hc", function() harpoon:list():select(3) end)
|
|
||||||
vim.keymap.set("n", "<leader>hv", function() harpoon:list():select(4) end)
|
|
||||||
vim.keymap.set("n", "<leader>hZ", function() harpoon:list():replace_at(1) end)
|
|
||||||
vim.keymap.set("n", "<leader>hX", function() harpoon:list():replace_at(2) end)
|
|
||||||
vim.keymap.set("n", "<leader>hC", function() harpoon:list():replace_at(3) end)
|
|
||||||
vim.keymap.set("n", "<leader>hV", function() harpoon:list():replace_at(4) end)
|
|
||||||
|
|
||||||
-- undotree
|
|
||||||
vim.keymap.set("n", "<leader>u", vim.cmd.UndotreeToggle)
|
|
||||||
|
|
||||||
-- treesitter and treesitter-context
|
|
||||||
vim.keymap.set("n", "<leader>tc", function() vim.cmd.TSContext({ "toggle" }) end)
|
|
||||||
|
|
||||||
-- fugitive (git integration)
|
|
||||||
vim.keymap.set("n", "<leader>gG", vim.cmd.Git)
|
|
||||||
vim.keymap.set("n", "<leader>gg", ":Git ") -- shortcut, arbitrary git commands
|
|
||||||
vim.keymap.set("n", "<leader>ga", function() vim.cmd.Git({ "add %"}) end)
|
|
||||||
vim.keymap.set("n", "<leader>gs", function() vim.cmd.Git({ "-p status" }) end)
|
|
||||||
vim.keymap.set("n", "<leader>gc", function() vim.cmd.Git({ "commit -a" }) end)
|
|
||||||
|
|
||||||
-- conform (formatter)
|
|
||||||
vim.keymap.set("n", "<leader>fmt", function()
|
|
||||||
require("conform").format({ bufnr = 0 })
|
|
||||||
end)
|
|
||||||
|
|
||||||
@@ -1,128 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"mfussenegger/nvim-dap",
|
|
||||||
config = function()
|
|
||||||
local dap = require("dap")
|
|
||||||
dap.set_log_level("DEBUG")
|
|
||||||
|
|
||||||
dap.adapters.codelldb = {
|
|
||||||
type = "executable",
|
|
||||||
command = "codelldb",
|
|
||||||
}
|
|
||||||
|
|
||||||
local dapConfigArgsInput = function()
|
|
||||||
return vim.split(vim.fn.input("args: "), " ")
|
|
||||||
end
|
|
||||||
|
|
||||||
local dapConfigProgramSelect = function()
|
|
||||||
local co = coroutine.running()
|
|
||||||
|
|
||||||
require('telescope.pickers').new({}, {
|
|
||||||
prompt_title = "debug executable",
|
|
||||||
finder = require('telescope.finders').new_oneshot_job({
|
|
||||||
"find", ".", "-type", "f", "-perm", "+100", "-exec", "realpath", "{}", "+"
|
|
||||||
}),
|
|
||||||
sorter = require('telescope.sorters').get_fuzzy_file(),
|
|
||||||
attach_mappings = function(prompt_bufnr, _map)
|
|
||||||
local tscopeActions = require('telescope.actions')
|
|
||||||
tscopeActions.select_default:replace(function()
|
|
||||||
tscopeActions.close(prompt_bufnr)
|
|
||||||
local chosenFile = require('telescope.actions.state').get_selected_entry().value
|
|
||||||
coroutine.resume(co, chosenFile)
|
|
||||||
end)
|
|
||||||
return true
|
|
||||||
end,
|
|
||||||
}):find()
|
|
||||||
|
|
||||||
return coroutine.yield()
|
|
||||||
end
|
|
||||||
|
|
||||||
dap.configurations.cpp = {
|
|
||||||
{
|
|
||||||
name = "default c/cpp: launch",
|
|
||||||
type = "codelldb",
|
|
||||||
request = "launch",
|
|
||||||
cwd = "${workspaceFolder}",
|
|
||||||
program = dapConfigProgramSelect,
|
|
||||||
stopOnEntry = false,
|
|
||||||
},
|
|
||||||
-- {
|
|
||||||
-- name = "default c/cpp: attach to lldbserver :1234",
|
|
||||||
-- type = "codelldb",
|
|
||||||
-- request = "attach",
|
|
||||||
-- cwd = "${workspaceFolder}",
|
|
||||||
-- program = dapConfigProgramSelect,
|
|
||||||
-- MIMode = "lldb",
|
|
||||||
-- miDebuggerServerAddress = "localhost:1234",
|
|
||||||
-- miDebuggerPath = "/usr/bin/lldb",
|
|
||||||
-- },
|
|
||||||
}
|
|
||||||
dap.configurations.c = dap.configurations.cpp
|
|
||||||
dap.configurations.go = {
|
|
||||||
{
|
|
||||||
name = "go: launch",
|
|
||||||
type = "delve",
|
|
||||||
request = "launch",
|
|
||||||
program = dapConfigProgramSelect,
|
|
||||||
args = dapConfigArgsInput,
|
|
||||||
outputMode = "remote",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name = "go: launch current file",
|
|
||||||
type = "delve",
|
|
||||||
request = "launch",
|
|
||||||
program = "${file}",
|
|
||||||
args = dapConfigArgsInput,
|
|
||||||
outputMode = "remote",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rcarriga/nvim-dap-ui",
|
|
||||||
dependencies = {
|
|
||||||
"mfussenegger/nvim-dap",
|
|
||||||
"nvim-neotest/nvim-nio",
|
|
||||||
},
|
|
||||||
config = function()
|
|
||||||
local dap = require("dap")
|
|
||||||
local dap_ui = require("dapui")
|
|
||||||
dap_ui.setup()
|
|
||||||
dap.listeners.before.attach.dapui_config = function() dap_ui.open() end
|
|
||||||
dap.listeners.before.launch.dapui_config = function() dap_ui.open() end
|
|
||||||
dap.listeners.before.event_terminated.dapui_config = function() dap_ui.close() end
|
|
||||||
dap.listeners.before.event_exited.dapui_config = function() dap_ui.close() end
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"jay-babu/mason-nvim-dap.nvim", -- TODO: here, or handle manually outside of neovim?
|
|
||||||
dependencies = {
|
|
||||||
"williamboman/mason.nvim",
|
|
||||||
"mfussenegger/nvim-dap",
|
|
||||||
"neovim/nvim-lspconfig",
|
|
||||||
},
|
|
||||||
config = function()
|
|
||||||
require("mason-nvim-dap").setup({
|
|
||||||
ensure_installed = {
|
|
||||||
"codelldb",
|
|
||||||
-- "delve",
|
|
||||||
},
|
|
||||||
automatic_installation = true,
|
|
||||||
handlers = {
|
|
||||||
function(config) require("mason-nvim-dap").default_setup(config) end,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"theHamsta/nvim-dap-virtual-text",
|
|
||||||
dependencies = {
|
|
||||||
"mfussenegger/nvim-dap",
|
|
||||||
},
|
|
||||||
-- TODO: disabled by default, keymapping to toggle
|
|
||||||
-- config = function()
|
|
||||||
-- local dap_virtual_text = require("nvim-dap-virtual-text")
|
|
||||||
-- dap_virtual_text.setup()
|
|
||||||
-- end,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
return {
|
|
||||||
"nvim-telescope/telescope.nvim",
|
|
||||||
tag = "0.1.8",
|
|
||||||
dependencies = { "nvim-lua/plenary.nvim" },
|
|
||||||
opts = {
|
|
||||||
defaults = {
|
|
||||||
layout_strategy = "horizontal",
|
|
||||||
layout_config = {
|
|
||||||
horizontal = {
|
|
||||||
width = 0.98,
|
|
||||||
height = 0.98,
|
|
||||||
preview_width = 0.45,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
path_display = { "truncate", },
|
|
||||||
},
|
|
||||||
pickers = {
|
|
||||||
find_files = {
|
|
||||||
find_command = {
|
|
||||||
"rg", "--hidden", "--files", -- "--no-ignore",
|
|
||||||
"-g", "!**/.git/**",
|
|
||||||
"-g", "!**/build/**",
|
|
||||||
"-g", "!**/node_modules/**",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
live_grep = {
|
|
||||||
additional_args = {
|
|
||||||
"--hidden", "--no-binary", -- "--no-ignore",
|
|
||||||
"-g", "!**/.git/**",
|
|
||||||
"-g", "!**/build/**",
|
|
||||||
"-g", "!**/node_modules/**",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
local defaultColorScheme = "tokyodark"
|
|
||||||
-- local defaultColorScheme = "tokyonight-night"
|
|
||||||
-- local defaultColorScheme = "bamboo-vulgaris"
|
|
||||||
-- local defaultColorScheme = "rose-pine-main"
|
|
||||||
-- local defaultColorScheme = "gruvbox"
|
|
||||||
-- local defaultColorScheme = "slate"
|
|
||||||
-- local defaultColorScheme = "sorbet"
|
|
||||||
|
|
||||||
local ok, theme_specs = pcall(dofile, (os.getenv('DIR_CURRENT_THEME') or "") .. "/neovim.lua")
|
|
||||||
if not ok then
|
|
||||||
vim.notify(
|
|
||||||
'current theme file not found, using default: ' .. defaultColorScheme,
|
|
||||||
vim.log.levels.INFO
|
|
||||||
)
|
|
||||||
vim.cmd.colorscheme(defaultColorScheme)
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local first = theme_specs[1]
|
|
||||||
local plugin_name = (type(first.name) == 'string' and first.name)
|
|
||||||
or (type(first[1]) == 'string' and first[1]:match('.*/(.*)'))
|
|
||||||
or 'plugin_name_not_found'
|
|
||||||
|
|
||||||
local last = theme_specs[#theme_specs]
|
|
||||||
local colorscheme = ((type(last.opts) == 'table' and type(last.opts.colorscheme) == 'string') and last.opts.colorscheme)
|
|
||||||
or plugin_name:gsub("%.%w+$", "")
|
|
||||||
|
|
||||||
colorscheme = (colorscheme == 'plugin_name_not_found' and defaultColorScheme)
|
|
||||||
or colorscheme
|
|
||||||
vim.cmd.colorscheme(colorscheme)
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
{
|
|
||||||
"defaultViewMode": "preview",
|
|
||||||
"showLineNumber": true,
|
|
||||||
"spellcheck": false,
|
|
||||||
"autoPairBrackets": false,
|
|
||||||
"autoPairMarkdown": false,
|
|
||||||
"useTab": false,
|
|
||||||
"autoConvertHtml": true,
|
|
||||||
"vimMode": false,
|
|
||||||
"trashOption": "none",
|
|
||||||
"newFileLocation": "folder",
|
|
||||||
"newFileFolderPath": "inbox",
|
|
||||||
"showUnsupportedFiles": true,
|
|
||||||
"attachmentFolderPath": "inbox",
|
|
||||||
"showInlineTitle": false,
|
|
||||||
"readableLineLength": false,
|
|
||||||
"livePreview": false
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"theme": "obsidian",
|
|
||||||
"accentColor": "#2f930e",
|
|
||||||
"baseFontSize": 18
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
{
|
|
||||||
"file-explorer": true,
|
|
||||||
"global-search": true,
|
|
||||||
"switcher": true,
|
|
||||||
"graph": true,
|
|
||||||
"backlink": true,
|
|
||||||
"canvas": true,
|
|
||||||
"outgoing-link": true,
|
|
||||||
"tag-pane": true,
|
|
||||||
"footnotes": false,
|
|
||||||
"properties": false,
|
|
||||||
"page-preview": true,
|
|
||||||
"daily-notes": true,
|
|
||||||
"templates": true,
|
|
||||||
"note-composer": true,
|
|
||||||
"command-palette": true,
|
|
||||||
"slash-command": false,
|
|
||||||
"editor-status": true,
|
|
||||||
"bookmarks": true,
|
|
||||||
"markdown-importer": false,
|
|
||||||
"zk-prefixer": false,
|
|
||||||
"random-note": false,
|
|
||||||
"outline": true,
|
|
||||||
"word-count": true,
|
|
||||||
"slides": false,
|
|
||||||
"audio-recorder": false,
|
|
||||||
"workspaces": false,
|
|
||||||
"file-recovery": true,
|
|
||||||
"publish": false,
|
|
||||||
"sync": false,
|
|
||||||
"bases": true,
|
|
||||||
"webviewer": false
|
|
||||||
}
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
{
|
|
||||||
"collapse-filter": true,
|
|
||||||
"search": "",
|
|
||||||
"showTags": false,
|
|
||||||
"showAttachments": false,
|
|
||||||
"hideUnresolved": false,
|
|
||||||
"showOrphans": true,
|
|
||||||
"collapse-color-groups": true,
|
|
||||||
"colorGroups": [],
|
|
||||||
"collapse-display": true,
|
|
||||||
"showArrow": false,
|
|
||||||
"textFadeMultiplier": 0,
|
|
||||||
"nodeSizeMultiplier": 1,
|
|
||||||
"lineSizeMultiplier": 1,
|
|
||||||
"collapse-forces": true,
|
|
||||||
"centerStrength": 0.518713248970312,
|
|
||||||
"repelStrength": 10,
|
|
||||||
"linkStrength": 1,
|
|
||||||
"linkDistance": 250,
|
|
||||||
"scale": 1,
|
|
||||||
"close": false
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
{
|
|
||||||
"markdown:toggle-preview": [
|
|
||||||
{
|
|
||||||
"modifiers": [
|
|
||||||
"Alt"
|
|
||||||
],
|
|
||||||
"key": "R"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"switcher:open": [
|
|
||||||
{
|
|
||||||
"modifiers": [
|
|
||||||
"Ctrl"
|
|
||||||
],
|
|
||||||
"key": "F"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -2,6 +2,46 @@
|
|||||||
# staring file was at /opt/homebrew/opt/yabai/share/yabai/examples
|
# staring file was at /opt/homebrew/opt/yabai/share/yabai/examples
|
||||||
# notes, stacks: https://github.com/koekeishiya/yabai/issues/203#issuecomment-650642142
|
# notes, stacks: https://github.com/koekeishiya/yabai/issues/203#issuecomment-650642142
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# key bindings for yabai wm
|
||||||
|
# general idea: alt navigates (move my view); alt+shift modifies (move/change the window)
|
||||||
|
|
||||||
|
# switch to space (to leave SIP in place, configure these in macos system settings)
|
||||||
|
# alt - 1 # switch to space 1
|
||||||
|
# alt - 2 # switch to space 2 (and similar for other numbers)
|
||||||
|
|
||||||
|
# move focused window to the given space
|
||||||
|
alt + shift - 1 : yabai -m window --space 1 --focus
|
||||||
|
alt + shift - 2 : yabai -m window --space 2 --focus
|
||||||
|
alt + shift - 3 : yabai -m window --space 3 --focus
|
||||||
|
alt + shift - 4 : yabai -m window --space 4 --focus
|
||||||
|
alt + shift - 5 : yabai -m window --space 5 --focus
|
||||||
|
alt + shift - 6 : yabai -m window --space 6 --focus
|
||||||
|
alt + shift - 7 : yabai -m window --space 7 --focus
|
||||||
|
alt + shift - 8 : yabai -m window --space 8 --focus
|
||||||
|
alt + shift - 9 : yabai -m window --space 9 --focus
|
||||||
|
|
||||||
|
# all windows in a space to fullscreen in a single stack
|
||||||
|
alt + shift - s : yabai -m space --layout stack
|
||||||
|
# all windows in a space back to the grid (managed)
|
||||||
|
alt + shift - g : yabai -m space --layout bsp
|
||||||
|
# toggle float on/off for the focused window
|
||||||
|
alt + shift - f : yabai -m window --toggle float
|
||||||
|
# balance window sizes
|
||||||
|
alt + shift - 0 : yabai -m space --balance # TODO: figure out better key option
|
||||||
|
|
||||||
|
# focus on next/previous window
|
||||||
|
alt - j : yabai -m window --focus \
|
||||||
|
$(yabai -m query --spaces --space | jq '.type' | tr -d "\"" | sed "s/stack/stack./" | sed "s/.*[^.]\$//")prev
|
||||||
|
alt - k : yabai -m window --focus \
|
||||||
|
$(yabai -m query --spaces --space | jq '.type' | tr -d "\"" | sed "s/stack/stack./" | sed "s/.*[^.]\$//")next
|
||||||
|
|
||||||
|
# move current window up/down in stack
|
||||||
|
alt + shift - k : yabai -m window --swap \
|
||||||
|
$(yabai -m query --spaces --space | jq '.type' | tr -d "\"" | sed "s/stack/stack./" | sed "s/.*[^.]\$//")next
|
||||||
|
alt + shift - j : yabai -m window --swap \
|
||||||
|
$(yabai -m query --spaces --space | jq '.type' | tr -d "\"" | sed "s/stack/stack./" | sed "s/.*[^.]\$//")prev
|
||||||
|
|
||||||
##########################################################################################
|
##########################################################################################
|
||||||
# key bindings for general use
|
# key bindings for general use
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
tmux_omitted_dirs=(
|
|
||||||
$HOME
|
|
||||||
$(find $DIR_HOME_BOX -type d -maxdepth 1)
|
|
||||||
$DIR_DEV
|
|
||||||
$DIR_GIT_PROJECTS
|
|
||||||
)
|
|
||||||
|
|
||||||
[[ ! ${tmux_omitted_dirs[(re)$(pwd)]} ]] && {
|
|
||||||
tmux new-window -d -n $EDITOR
|
|
||||||
tmux send-keys -t :$EDITOR "$EDITOR ." c-M
|
|
||||||
tmux new-window -d -n daa
|
|
||||||
tmux new-window -d -n procs
|
|
||||||
tmux rename-window cmd
|
|
||||||
tmux send-keys -t :cmd "clear; [[ -d .git ]] && git status" c-M
|
|
||||||
}
|
|
||||||
|
|
||||||
clear
|
|
||||||
|
|
||||||
@@ -8,9 +8,8 @@ set -g status-style 'bg=#111111 fg=#22cc00'
|
|||||||
set -g base-index 0
|
set -g base-index 0
|
||||||
|
|
||||||
# unbind keys
|
# unbind keys
|
||||||
unbind-key f; unbind-key C-f; unbind-key s; unbind-key C-s
|
unbind-key f; unbind-key C-f; unbind-key C-s
|
||||||
unbind-key c; unbind-key n; unbind-key p
|
unbind-key c; unbind-key n; unbind-key p
|
||||||
unbind-key q; unbind-key w
|
|
||||||
unbind-key C-o; unbind-key C-n; unbind-key C-p; unbind-key C-l; unbind-key C-h
|
unbind-key C-o; unbind-key C-n; unbind-key C-p; unbind-key C-l; unbind-key C-h
|
||||||
|
|
||||||
# vim-like movement stuff
|
# vim-like movement stuff
|
||||||
@@ -25,17 +24,18 @@ bind -r l select-pane -R
|
|||||||
# reload tmux.conf
|
# reload tmux.conf
|
||||||
bind-key r source-file "$XDG_CONFIG_HOME/tmux/tmux.conf" \; display-message "tmux.conf reloaded"
|
bind-key r source-file "$XDG_CONFIG_HOME/tmux/tmux.conf" \; display-message "tmux.conf reloaded"
|
||||||
|
|
||||||
# closing the current session
|
# kill the current session
|
||||||
bind-key q kill-session
|
# TODO: would it clash with other bindings to change these to C-q and C-w ?
|
||||||
bind-key w run-shell "$DIR_SCRIPTS/tmux-session-close #{session_name}"
|
# TODO: combine these into one command; must cover case when only 1 session remains
|
||||||
|
bind-key Q rename-session zzzz-temp-kill\; switch-client -p\; kill-session -t zzzz-temp-kill
|
||||||
|
bind-key W kill-session
|
||||||
|
|
||||||
# creating new windows
|
# creating new windows
|
||||||
bind-key n new-window
|
bind-key n new-window
|
||||||
|
|
||||||
# find and switching for sessions, include using tmux-session-init
|
# find and switching for sessions, include using tmux-session-init
|
||||||
bind-key C-f run-shell "tmux neww $DIR_SCRIPTS/tmux-session-init"
|
bind-key C-f run-shell "tmux neww $DIR_SCRIPTS/tmux-session-init"
|
||||||
bind-key C-s choose-session
|
bind-key C-s run-shell "tmux neww $DIR_SCRIPTS/tmux-session-init find-existing"
|
||||||
bind-key S choose-window
|
|
||||||
bind-key C-h run-shell "tmux neww $DIR_SCRIPTS/tmux-session-init hub"
|
bind-key C-h run-shell "tmux neww $DIR_SCRIPTS/tmux-session-init hub"
|
||||||
bind-key -r C-l switch-client -l
|
bind-key -r C-l switch-client -l
|
||||||
bind-key -r C-o last-window
|
bind-key -r C-o last-window
|
||||||
|
|||||||
35
src_files/.config/yabai/yabairc
Executable file
35
src_files/.config/yabai/yabairc
Executable file
@@ -0,0 +1,35 @@
|
|||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
# global settings
|
||||||
|
yabai -m config \
|
||||||
|
external_bar off:40:0 \
|
||||||
|
menubar_opacity 1.0 \
|
||||||
|
mouse_follows_focus off \
|
||||||
|
focus_follows_mouse off \
|
||||||
|
display_arrangement_order default \
|
||||||
|
window_origin_display default \
|
||||||
|
window_placement first_child \
|
||||||
|
window_insertion_point focused \
|
||||||
|
window_zoom_persist on \
|
||||||
|
window_shadow off \
|
||||||
|
window_animation_duration 0.0 \
|
||||||
|
window_animation_easing ease_out_circ \
|
||||||
|
window_opacity_duration 0.0 \
|
||||||
|
active_window_opacity 1.0 \
|
||||||
|
normal_window_opacity 0.90 \
|
||||||
|
window_opacity off \
|
||||||
|
insert_feedback_color 0xffd75f5f \
|
||||||
|
split_ratio 0.0 \
|
||||||
|
split_type auto \
|
||||||
|
auto_balance off \
|
||||||
|
top_padding 00 \
|
||||||
|
bottom_padding 00 \
|
||||||
|
left_padding 00 \
|
||||||
|
right_padding 00 \
|
||||||
|
window_gap 00 \
|
||||||
|
layout bsp \
|
||||||
|
mouse_modifier fn \
|
||||||
|
mouse_action1 move \
|
||||||
|
mouse_action2 resize \
|
||||||
|
mouse_drop_action swap
|
||||||
|
|
||||||
@@ -1,22 +1,18 @@
|
|||||||
# default programs
|
# default programs
|
||||||
export BROWSER='brave'
|
export BROWSER='brave'
|
||||||
export EDITOR='nvim'
|
export EDITOR='nvim'
|
||||||
export TERMINAL='ghostty'
|
|
||||||
|
|
||||||
# env vars used for my organization structure
|
# env vars used for my organization structure
|
||||||
export DIR_HOME_BOX="$HOME/dbox"
|
export DIR_HOME_BOX="$HOME/dbox"
|
||||||
export DIR_MUSIC="$DIR_HOME_BOX/media/music"
|
|
||||||
export DIR_DEV="$HOME/dev"
|
export DIR_DEV="$HOME/dev"
|
||||||
export DIR_GIT_PROJECTS="$DIR_DEV/git"
|
export DIR_GIT_PROJECTS="$DIR_DEV/git"
|
||||||
export DIR_NOTES="$DIR_HOME_BOX/notes"
|
|
||||||
|
|
||||||
# util dirs; do not change without checking impact on xdg base dirs
|
# util dirs; do not change without checking impact on xdg base dirs
|
||||||
export DIR_LOCAL="$HOME/.local"
|
export DIR_LOCAL="$HOME/.local"
|
||||||
export DIR_BIN="$DIR_LOCAL/bin"
|
export DIR_BIN="$DIR_LOCAL/bin"
|
||||||
|
export DIR_BUILD="$DIR_LOCAL/build"
|
||||||
export DIR_SCRIPTS="$DIR_LOCAL/scripts"
|
export DIR_SCRIPTS="$DIR_LOCAL/scripts"
|
||||||
export DIR_TMP="$DIR_LOCAL/tmp"
|
export DIR_TMP="$DIR_LOCAL/tmp"
|
||||||
export DIR_USER_OPT="$HOME/opt"
|
|
||||||
export DIR_USER_LIB="$DIR_LOCAL/lib"
|
|
||||||
|
|
||||||
# xdg base directory vars
|
# xdg base directory vars
|
||||||
export XDG_CONFIG_HOME="$HOME/.config"
|
export XDG_CONFIG_HOME="$HOME/.config"
|
||||||
@@ -24,7 +20,7 @@ export XDG_CACHE_HOME="$HOME/.cache"
|
|||||||
export XDG_DATA_HOME="$DIR_LOCAL/share"
|
export XDG_DATA_HOME="$DIR_LOCAL/share"
|
||||||
export XDG_STATE_HOME="$DIR_LOCAL/state"
|
export XDG_STATE_HOME="$DIR_LOCAL/state"
|
||||||
export XDG_DATA_DIRS="/usr/local/share:/usr/share"
|
export XDG_DATA_DIRS="/usr/local/share:/usr/share"
|
||||||
#export XDG_CONFIG_DIRS="/etc/xdg" # TODO: does this work on macOS?
|
#export XDG_CONFIG_DIRS="/etc/xdg" # TODO: does this work on macos?
|
||||||
|
|
||||||
# zsh
|
# zsh
|
||||||
export ZDOTDIR="$XDG_CONFIG_HOME/zsh" # may already be set, set anyway
|
export ZDOTDIR="$XDG_CONFIG_HOME/zsh" # may already be set, set anyway
|
||||||
@@ -32,13 +28,11 @@ export ZDOTDIR="$XDG_CONFIG_HOME/zsh" # may already be set, set anyway
|
|||||||
# git
|
# git
|
||||||
export GIT_EDITOR="$EDITOR"
|
export GIT_EDITOR="$EDITOR"
|
||||||
|
|
||||||
# obsidian
|
# language support/tools
|
||||||
export OBSIDIAN_WORKSPACES_TO_CONFIGURE=("$DIR_NOTES")
|
export ASDF_DIR="$XDG_CONFIG_HOME/asdf"
|
||||||
|
export ASDF_CONFIG_FILE="$ASDF_DIR/.asdfrc"
|
||||||
# reaper
|
export ASDF_DATA_DIR="$DIR_LOCAL/.asdf"
|
||||||
DIR_REAPER_PORTABLE_SHARED="$DIR_USER_OPT/reaper-portable/shared"
|
export ASDF_TOOL_VERSIONS_FILENAME=".asdf_tool_versions"
|
||||||
DIR_REAPER_PORTABLE_LINUX="$DIR_USER_OPT/reaper-portable/linux"
|
|
||||||
DIR_REAPER_PORTABLE_MACOS="$DIR_USER_OPT/reaper-portable/macos"
|
|
||||||
|
|
||||||
# clean-up of home dir
|
# clean-up of home dir
|
||||||
export __CF_USER_TEXT_ENCODING="0x0:0x0"
|
export __CF_USER_TEXT_ENCODING="0x0:0x0"
|
||||||
|
|||||||
@@ -16,8 +16,9 @@ alias nv='nvim'
|
|||||||
alias n='nvim'
|
alias n='nvim'
|
||||||
alias tms='tmux-session-init'
|
alias tms='tmux-session-init'
|
||||||
|
|
||||||
# executable overrides
|
# executable name overrides
|
||||||
alias ls='ls -F'
|
alias ls='ls -F'
|
||||||
|
alias yt-dlp='yt-dlp --write-info-json'
|
||||||
|
|
||||||
# misc commands
|
# misc commands
|
||||||
alias cal='khal calendar'
|
alias cal='khal calendar'
|
||||||
@@ -29,10 +30,10 @@ alias journal="cd $DIR_HOME_BOX; $EDITOR .current-journal"
|
|||||||
alias ncspotkeys="$EDITOR $DIR_GIT_PROJECTS/other/ncspot/doc/users.md"
|
alias ncspotkeys="$EDITOR $DIR_GIT_PROJECTS/other/ncspot/doc/users.md"
|
||||||
|
|
||||||
# source extensions and system-specific files
|
# source extensions and system-specific files
|
||||||
|
[[ -e "$HOME/.profile" ]] && source "$HOME/.profile" # TODO: do i want to source .profile?
|
||||||
[[ -a "$ZDOTDIR/zsh-general-dev" ]] && source "$ZDOTDIR/zsh-general-dev"
|
[[ -a "$ZDOTDIR/zsh-general-dev" ]] && source "$ZDOTDIR/zsh-general-dev"
|
||||||
[[ -a "$ZDOTDIR/zsh-life-system" ]] && source "$ZDOTDIR/zsh-life-system"
|
[[ -a "$ZDOTDIR/zsh-life-system" ]] && source "$ZDOTDIR/zsh-life-system"
|
||||||
|
|
||||||
# dev/lang setup
|
# TODO: refactor the below; simplify or at least move elsewhere
|
||||||
[[ -n $(command -v mise) ]] && eval "$(mise activate zsh)"
|
|
||||||
export DEVKITARM=/opt/devkitpro/devkitARM
|
export DEVKITARM=/opt/devkitpro/devkitARM
|
||||||
|
. $(brew --prefix asdf)/libexec/asdf.sh
|
||||||
|
|||||||
@@ -8,12 +8,9 @@ alias login-aws-id-list="grep sso_account_id $HOME/.aws/config"
|
|||||||
|
|
||||||
# git stuff
|
# git stuff
|
||||||
alias gfo='git fetch origin'
|
alias gfo='git fetch origin'
|
||||||
alias gfl='git fetch origin; git log'
|
|
||||||
alias gpo='git pull origin'
|
|
||||||
alias gppo='git push origin'
|
|
||||||
alias gst='git status'
|
|
||||||
alias git-push-to-temp='git branch -D temp; git checkout -b temp; git push origin temp -uf; git checkout -'
|
alias git-push-to-temp='git branch -D temp; git checkout -b temp; git push origin temp -uf; git checkout -'
|
||||||
alias gptemp='git-push-to-temp'
|
alias gpdev='git-push-to-temp'
|
||||||
|
alias gpo='git pull origin'
|
||||||
|
|
||||||
# code/test/linter run and build commands
|
# code/test/linter run and build commands
|
||||||
alias bel='bundle exec standardrb'
|
alias bel='bundle exec standardrb'
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# for reference, default linux directory was in $XDG_CONFIG_HOME/GIMP/
|
|
||||||
nohup \
|
|
||||||
env GIMP2_DIRECTORY=$XDG_CONFIG_HOME/gimp \
|
|
||||||
gimp \
|
|
||||||
> /dev/null 2>&1 \
|
|
||||||
&
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# trying the "portable install" option; using this launch script to point to that
|
|
||||||
source "$XDG_CONFIG_HOME/zsh/.zshenv"
|
|
||||||
|
|
||||||
reaper_portable_exec_linux="$DIR_REAPER_PORTABLE_LINUX/REAPER/reaper"
|
|
||||||
[[ ! -x "$reaper_portable_exec_linux" ]] && {
|
|
||||||
echo "reaper missing or not executable: $reaper_portable_exec_linux" >&2
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
reaper_portable_config_linux="$DIR_REAPER_PORTABLE_LINUX/config"
|
|
||||||
reaper_portable_ini_file_linux="$reaper_portable_config_linux/reaper.ini"
|
|
||||||
[[ ! -r "$reaper_portable_ini_file_linux" ]] && {
|
|
||||||
[[ ! -d "$reaper_portable_config_linux" ]] && mkdir -p "$reaper_portable_config_linux"
|
|
||||||
touch "$reaper_portable_ini_file_linux"
|
|
||||||
}
|
|
||||||
|
|
||||||
nohup \
|
|
||||||
$reaper_portable_exec_linux \
|
|
||||||
-cfgfile $reaper_portable_ini_file_linux \
|
|
||||||
> /dev/null 2>&1 \
|
|
||||||
&
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
#!/bin/zsh
|
|
||||||
|
|
||||||
# wrapper for mv; for the given target, create any dirs which do not already exist
|
|
||||||
mvd_target_dir=$(dirname "${@: -1}")
|
|
||||||
[[ ! -d "$mvd_target_dir" ]] && mkdir -p "$mvd_target_dir"
|
|
||||||
exec mv "$@"
|
|
||||||
21
src_files/.local/scripts/.tmux-session-hydrate-default
Normal file
21
src_files/.local/scripts/.tmux-session-hydrate-default
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
local omitted_dirs=(
|
||||||
|
$HOME
|
||||||
|
$DIR_HOME_BOX
|
||||||
|
$DIR_DEV
|
||||||
|
$DIR_GIT_PROJECTS
|
||||||
|
)
|
||||||
|
[[ ! ${omitted_dirs[(re)$(pwd)]} ]] &&
|
||||||
|
tmux new-window -d -n cmd &&
|
||||||
|
tmux rename-window $EDITOR &&
|
||||||
|
$EDITOR .
|
||||||
|
|
||||||
|
clear
|
||||||
|
|
||||||
|
## example template for custom override
|
||||||
|
# tmux new-window -d -n cmd
|
||||||
|
# tmux send-keys -t :cmd "echo 'in cmd'" c-M
|
||||||
|
# tmux new-window -d -n another
|
||||||
|
# tmux send-keys -t :another "echo 'in another'" c-M
|
||||||
|
# tmux rename-window $EDITOR
|
||||||
|
# $EDITOR .
|
||||||
|
# clear
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
#! /bin/zsh
|
|
||||||
|
|
||||||
# simple unit-conversion util, partly made for fun, not much here so far
|
|
||||||
|
|
||||||
conversionUnits=$1
|
|
||||||
inputsToConvert=($argv[2,-1])
|
|
||||||
|
|
||||||
function cmToIn() {
|
|
||||||
result=$(( 1 / 2.54 * $1 ))
|
|
||||||
printf '%.1f cm => %.2f in\n' $1 $result
|
|
||||||
}
|
|
||||||
|
|
||||||
function inToCm() {
|
|
||||||
result=$(( 2.54 * $1 ))
|
|
||||||
printf '%.2f in => %.1f cm\n' $1 $result
|
|
||||||
}
|
|
||||||
|
|
||||||
function unsupportedUnits() {
|
|
||||||
echo "unsupported conversion units given: $conversionUnits"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
funcRef=exit # not sure what a good default function is, using exit
|
|
||||||
case $conversionUnits in
|
|
||||||
(cm|cm-in) funcRef=cmToIn
|
|
||||||
;;
|
|
||||||
(in|in-cm) funcRef=inToCm
|
|
||||||
;;
|
|
||||||
(*) funcRef=unsupportedUnits
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
for i in $inputsToConvert; do $funcRef $i; done
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
#! /bin/zsh
|
|
||||||
|
|
||||||
# simple wrapper to run both find and grep
|
|
||||||
# usage: gfind <search-term> [search-directory]
|
|
||||||
# if no search-directory given, uses . by default
|
|
||||||
|
|
||||||
searchTerm=$1
|
|
||||||
searchDirectory=$(if [[ -n $2 ]] then echo $2; else echo "."; fi)
|
|
||||||
|
|
||||||
printf '//// find results for: %s in directory: %s\n' $searchTerm $searchDirectory
|
|
||||||
find $searchDirectory -iname "*$searchTerm*"
|
|
||||||
|
|
||||||
printf '\n//// grep results for: %s in directory: %s\n' $searchTerm $searchDirectory
|
|
||||||
grep -rIi $searchTerm $searchDirectory
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
#!/bin/zsh
|
|
||||||
|
|
||||||
tmux_existing_sessions=$(tmux list-sessions 2> /dev/null)
|
|
||||||
[[ ${#tmux_existing_sessions[@]} -gt 1 ]] && $DIR_SCRIPTS/tmux-session-init hub
|
|
||||||
tmux kill-session -t $1
|
|
||||||
@@ -1,35 +1,36 @@
|
|||||||
#!/bin/zsh
|
#!/bin/zsh
|
||||||
|
|
||||||
tmux_switch_to() {
|
switch_to() {
|
||||||
[[ -z $TMUX ]] && tmux attach-session -t $1 || tmux switch-client -t $1
|
[[ -z $TMUX ]] && tmux attach-session -t $1 || tmux switch-client -t $1
|
||||||
}
|
}
|
||||||
|
|
||||||
tmux_hydrate() {
|
hydrate() {
|
||||||
local tmux_hydrate_path="$XDG_CONFIG_HOME/tmux/.tmux-session-hydrate-default"
|
local tmux_hydrate_path="$DIR_SCRIPTS/.tmux-session-hydrate-default"
|
||||||
[[ -f $2/.tmux-session-hydrate ]] && tmux_hydrate_path="$2/.tmux-session-hydrate"
|
[[ -f $2/.tmux-session-hydrate ]] && tmux_hydrate_path="$2/.tmux-session-hydrate"
|
||||||
[[ -f $tmux_hydrate_path ]] && tmux send-keys -t $1 "source $tmux_hydrate_path" c-M
|
[[ -f $tmux_hydrate_path ]] && tmux send-keys -t $1 "source $tmux_hydrate_path" c-M
|
||||||
}
|
}
|
||||||
|
|
||||||
tmux_existing_sessions=$(tmux list-sessions 2> /dev/null || echo '')
|
local name_regex="^\([-_A-Za-z0-9]*\):.*$"
|
||||||
tmux_search_dirs=(
|
local existing_sessions=$([[ -n $(pgrep tmux) ]] && tmux list-sessions | sed "s/$name_regex/\1/" || echo '')
|
||||||
|
local search_dirs=(
|
||||||
$DIR_HOME_BOX
|
$DIR_HOME_BOX
|
||||||
$DIR_DEV
|
$DIR_DEV
|
||||||
$DIR_GIT_PROJECTS/*
|
$DIR_GIT_PROJECTS/*
|
||||||
)
|
)
|
||||||
tmux_target_name=''
|
local target_name=''
|
||||||
tmux_target_path=''
|
local target_path=''
|
||||||
|
|
||||||
[[ $# -eq 1 ]] && tmux_target_path=$1 ||
|
[[ $# -eq 1 ]] && target_path=$1 ||
|
||||||
tmux_target_path=$(find $tmux_search_dirs -mindepth 1 -maxdepth 1 -type d | fzf)
|
target_path=$(find $search_dirs -mindepth 1 -maxdepth 1 -type d | fzf)
|
||||||
|
|
||||||
if [[ $tmux_target_path = "." ]]; then tmux_target_name=$(basename $(pwd)) && tmux_target_path=$(pwd);
|
if [[ $target_path = "find-existing" ]]; then target_name=$(echo $existing_sessions | fzf);
|
||||||
elif [[ $tmux_target_path = "hub" ]]; then tmux_target_name="hub" && tmux_target_path="$HOME";
|
elif [[ $target_path = "hub" ]]; then target_name="hub" && target_path="$HOME";
|
||||||
elif [[ -n $tmux_target_path ]]; then tmux_target_name=$(basename "$tmux_target_path" | tr . _);
|
elif [[ -n $target_path ]]; then target_name=$(basename "$target_path" | tr . _);
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[[ -z $tmux_target_name ]] && exit 0
|
[[ -z $target_name ]] && exit 0
|
||||||
|
|
||||||
! (echo $tmux_existing_sessions | grep -q "$tmux_target_name") &&
|
! (echo $existing_sessions | grep -q "$target_name") &&
|
||||||
tmux new-session -d -s $tmux_target_name -c $tmux_target_path &&
|
tmux new-session -d -s $target_name -c $target_path &&
|
||||||
tmux_hydrate $tmux_target_name $tmux_target_path
|
hydrate $target_name $target_path
|
||||||
tmux_switch_to $tmux_target_name
|
switch_to $target_name
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# for reference, default macos directory was in $HOME/Library/Application Support/GIMP/
|
|
||||||
nohup \
|
|
||||||
env GIMP3_DIRECTORY="$XDG_CONFIG_HOME/gimp" \
|
|
||||||
/Applications/GIMP.app/Contents/MacOS/gimp \
|
|
||||||
> /dev/null 2>&1 \
|
|
||||||
&
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# trying the "portable install" option; using this launch script to point to that
|
|
||||||
source "$XDG_CONFIG_HOME/zsh/.zshenv"
|
|
||||||
|
|
||||||
reaper_portable_exec_macos="$DIR_REAPER_PORTABLE_MACOS/REAPER.app/Contents/MacOS/REAPER"
|
|
||||||
[[ ! -x "$reaper_portable_exec_macos" ]] && {
|
|
||||||
echo "reaper missing or not executable: $reaper_portable_exec_macos" >&2
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
reaper_portable_ini_file_macos="$DIR_REAPER_PORTABLE_MACOS/reaper.ini"
|
|
||||||
[[ ! -r "$reaper_portable_ini_file_macos" ]] && touch "$reaper_portable_ini_file_macos"
|
|
||||||
|
|
||||||
nohup \
|
|
||||||
$reaper_portable_exec_macos \
|
|
||||||
> /dev/null 2>&1 \
|
|
||||||
&
|
|
||||||
@@ -1,68 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"ellisonleao/gruvbox.nvim",
|
|
||||||
name = "gruvbox",
|
|
||||||
-- lazy = false,
|
|
||||||
-- priority = 1000,
|
|
||||||
opts = {
|
|
||||||
terminal_colors = true, -- add neovim terminal colors
|
|
||||||
undercurl = true,
|
|
||||||
underline = true,
|
|
||||||
bold = true,
|
|
||||||
italic = {
|
|
||||||
strings = true,
|
|
||||||
emphasis = true,
|
|
||||||
comments = true,
|
|
||||||
operators = false,
|
|
||||||
folds = true,
|
|
||||||
},
|
|
||||||
strikethrough = true,
|
|
||||||
invert_selection = false,
|
|
||||||
invert_signs = false,
|
|
||||||
invert_tabline = false,
|
|
||||||
inverse = true, -- invert background for search, diffs, statuslines and errors
|
|
||||||
contrast = "", -- "hard", "soft", or ""
|
|
||||||
palette_overrides = {},
|
|
||||||
overrides = {},
|
|
||||||
dim_inactive = false,
|
|
||||||
transparent_mode = false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"folke/tokyonight.nvim",
|
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
opts = {
|
|
||||||
style = "night", -- "night", "storm", "moon", "day"
|
|
||||||
styles = {
|
|
||||||
functions = {} -- disable italic for functions
|
|
||||||
},
|
|
||||||
on_colors = function(colors)
|
|
||||||
colors.hint = colors.orange
|
|
||||||
colors.error = "#ff0000"
|
|
||||||
colors.fg_gutter = "#9098B8"
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tiagovla/tokyodark.nvim",
|
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
opts = {
|
|
||||||
custom_highlights = function(highlights, _palette)
|
|
||||||
highlights.Comment['fg'] = "#8a9097"
|
|
||||||
highlights.LineNr['fg'] = "#8088A8"
|
|
||||||
return highlights
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'ribru17/bamboo.nvim',
|
|
||||||
-- lazy = false,
|
|
||||||
-- priority = 1000,
|
|
||||||
config = function()
|
|
||||||
require('bamboo').setup { }
|
|
||||||
require('bamboo').load()
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
'ribru17/bamboo.nvim',
|
|
||||||
-- lazy = false,
|
|
||||||
-- priority = 1000,
|
|
||||||
config = function()
|
|
||||||
require('bamboo').setup { }
|
|
||||||
require('bamboo').load()
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"catppuccin/nvim",
|
|
||||||
name = "catppuccin",
|
|
||||||
priority = 1000,
|
|
||||||
config = function()
|
|
||||||
require("catppuccin").setup({
|
|
||||||
flavour = "latte", -- other options: "mocha", "frappe", "macchiato"
|
|
||||||
})
|
|
||||||
vim.cmd.colorscheme("catppuccin-latte")
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"LazyVim/LazyVim",
|
|
||||||
opts = {
|
|
||||||
colorscheme = "catppuccin-latte",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"neanias/everforest-nvim",
|
|
||||||
opts = {
|
|
||||||
background = "soft",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"LazyVim/LazyVim",
|
|
||||||
opts = {
|
|
||||||
colorscheme = "everforest",
|
|
||||||
background = "soft",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"ellisonleao/gruvbox.nvim",
|
|
||||||
name = "gruvbox",
|
|
||||||
-- lazy = false,
|
|
||||||
-- priority = 1000,
|
|
||||||
opts = {
|
|
||||||
terminal_colors = true, -- add neovim terminal colors
|
|
||||||
undercurl = true,
|
|
||||||
underline = true,
|
|
||||||
bold = true,
|
|
||||||
italic = {
|
|
||||||
strings = true,
|
|
||||||
emphasis = true,
|
|
||||||
comments = true,
|
|
||||||
operators = false,
|
|
||||||
folds = true,
|
|
||||||
},
|
|
||||||
strikethrough = true,
|
|
||||||
invert_selection = false,
|
|
||||||
invert_signs = false,
|
|
||||||
invert_tabline = false,
|
|
||||||
inverse = true, -- invert background for search, diffs, statuslines and errors
|
|
||||||
contrast = "", -- "hard", "soft", or ""
|
|
||||||
palette_overrides = {},
|
|
||||||
overrides = {},
|
|
||||||
dim_inactive = false,
|
|
||||||
transparent_mode = false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
return {
|
|
||||||
{ "tahayvr/matteblack.nvim", lazy = false, priority = 1000 },
|
|
||||||
{
|
|
||||||
"LazyVim/LazyVim",
|
|
||||||
opts = {
|
|
||||||
colorscheme = "matteblack",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
return {
|
|
||||||
{ "EdenEast/nightfox.nvim" },
|
|
||||||
{
|
|
||||||
"LazyVim/LazyVim",
|
|
||||||
opts = {
|
|
||||||
colorscheme = "nordfox",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"tiagovla/tokyodark.nvim",
|
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
opts = {
|
|
||||||
custom_highlights = function(highlights, _palette)
|
|
||||||
highlights.Comment['fg'] = "#8a9097"
|
|
||||||
highlights.LineNr['fg'] = "#8088A8"
|
|
||||||
return highlights
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"folke/tokyonight.nvim",
|
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
opts = {
|
|
||||||
style = "night", -- "night", "storm", "moon", "day"
|
|
||||||
styles = {
|
|
||||||
functions = {} -- disable italic for functions
|
|
||||||
},
|
|
||||||
on_colors = function(colors)
|
|
||||||
colors.hint = colors.orange
|
|
||||||
colors.error = "#ff0000"
|
|
||||||
colors.fg_gutter = "#9098B8"
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"tiagovla/tokyodark.nvim",
|
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
opts = {
|
|
||||||
custom_highlights = function(highlights, _palette)
|
|
||||||
highlights.Comment['fg'] = "#8a9097"
|
|
||||||
highlights.LineNr['fg'] = "#8088A8"
|
|
||||||
return highlights
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
local M = {}
|
|
||||||
|
|
||||||
M.opts = {}
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,86 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# OMARCHY_CURRENT_THEME_NEOVIM="~/.config/omarchy/current/theme/neovim.lua"
|
|
||||||
OMARCHY_CURRENT_THEME_NEOVIM="./neovim.lua"
|
|
||||||
|
|
||||||
if [[ ! -f "$OMARCHY_CURRENT_THEME_NEOVIM" ]]; then
|
|
||||||
echo "neovim theme not found for live update: $OMARCHY_CURRENT_THEME_NEOVIM" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
read -r plugin_name colorscheme_name <<< "$(
|
|
||||||
nvim -l <(cat << NESTED_LUA_BLOCK
|
|
||||||
local ok, plugins = pcall(dofile, '${OMARCHY_CURRENT_THEME_NEOVIM}')
|
|
||||||
if not ok then
|
|
||||||
print('ERROR: could not load neovim theme file for live update')
|
|
||||||
os.exit(1)
|
|
||||||
end
|
|
||||||
|
|
||||||
local first = plugins[1]
|
|
||||||
local plugin_name = (type(first.name) == 'string' and first.name)
|
|
||||||
or (type(first[1]) == 'string' and first[1]:match('.*/(.*)'))
|
|
||||||
or 'plugin_name_not_found'
|
|
||||||
|
|
||||||
if plugin_name == 'plugin_name_not_found' then
|
|
||||||
print('ERROR: could not detect neovim theme plugin for live update')
|
|
||||||
os.exit(1)
|
|
||||||
end
|
|
||||||
|
|
||||||
local last = plugins[#plugins]
|
|
||||||
local colorscheme = ((type(last.opts) == 'table' and type(last.opts.colorscheme) == 'string') and last.opts.colorscheme)
|
|
||||||
or plugin_name:gsub("%.%w+$", "")
|
|
||||||
|
|
||||||
vim.print(plugin_name .. " " .. colorscheme)
|
|
||||||
NESTED_LUA_BLOCK
|
|
||||||
) > /dev/stdout 2>&1 | tr -d '\r'
|
|
||||||
)"
|
|
||||||
|
|
||||||
nvim --headless +"lua require(\"lazy\").install({ show = false, wait = true })" +q > /dev/null 2>&1
|
|
||||||
|
|
||||||
nvim_stdpath_run=$(dirname $(nvim -l <(echo "vim.cmd.echo('stdpath(\"run\")')") > /dev/stdout 2>&1))
|
|
||||||
find "$nvim_stdpath_run" -type s -name "nvim*" 2> /dev/null |
|
|
||||||
while IFS= read -r nvim_server; do
|
|
||||||
# echo "running for $nvim_server"
|
|
||||||
timeout 2s nvim --server "$nvim_server" \
|
|
||||||
--remote-expr "execute('lua require(\"lazy\").install({ show = false, wait = true })')" \
|
|
||||||
> /dev/null 2>&1
|
|
||||||
timeout 4s nvim --server "$nvim_server" \
|
|
||||||
--remote-expr "execute('lua require(\"lazy\").load({ show = false, wait = true, plugins = { \"$plugin_name\" } })')" \
|
|
||||||
> /dev/null 2>&1
|
|
||||||
timeout 2s nvim --server "$nvim_server" \
|
|
||||||
--remote-expr "execute('colorscheme $colorscheme_name')" \
|
|
||||||
> /dev/null 2>&1
|
|
||||||
# echo "finished for $nvim_server"
|
|
||||||
done
|
|
||||||
|
|
||||||
##########################################################################################
|
|
||||||
|
|
||||||
# ln -snf ~/dev/git/other/omarchy/neovim.lua ~/.config/nvim/lua/plugins_lazy/colorschemes.lua
|
|
||||||
# ref only
|
|
||||||
# lua require("lazy").install({ show = false, wait = true })
|
|
||||||
# lua require("lazy").load({ show = false, wait = true, plugins = { "nightfox.nvim" } })
|
|
||||||
# lua require("lazy").build({ show = false, wait = true, plugins = { name = "tokyonight.nvim" } })
|
|
||||||
# lua require("lazy").reload({ show = false, wait = true, plugins = { name = "tokyonight.nvim" } })
|
|
||||||
|
|
||||||
# get neovim theme file, parse as lua? load the tables and get first value in each, as well as a name if one is set
|
|
||||||
# if name is set, that is plugin name which lazy.nvim knows, if not, then take the value after the / in the git repo name
|
|
||||||
|
|
||||||
# also, in the final table, parse out the colorscheme value, that is what needs to be passed to my loop below
|
|
||||||
# if none is present, then default to the plugin name from above, but trim off any .suffix like .nvim
|
|
||||||
|
|
||||||
# # nvim_sockets=$(find /var/folders -type s -user "$USERNAME" -name "nvim*" -path "*nvim.$USERNAME*" 2> /dev/null)
|
|
||||||
# nvim_sockets=$(find /var/folders -type s -name "nvim*" -path "*nvim.*" 2> /dev/null)
|
|
||||||
# # for s in "${nvim_sockets[@]}"; do
|
|
||||||
# for s in $nvim_sockets; do
|
|
||||||
# echo "will run for $s"
|
|
||||||
# # nvim --server "$s" --remote-expr "execute('colorscheme $1')"
|
|
||||||
# done
|
|
||||||
|
|
||||||
# find /var/folders -type s -name "nvim*" -path "*nvim.*" 2> /dev/null | while IFS= read -r server; do
|
|
||||||
|
|
||||||
# nvim -l <(echo "vim.cmd.echo('stdpath(\"run\")')") > /dev/stdout 2>&1 |
|
|
||||||
# dirname $@ |
|
|
||||||
# find $@ -type s -name "nvim*" 2> /dev/null |
|
|
||||||
# while IFS= read -r server; do
|
|
||||||
# timeout 0.5s nvim --server "$server" --remote-expr "execute('colorscheme $1')" > /dev/null 2>&1
|
|
||||||
# done
|
|
||||||
Reference in New Issue
Block a user