15 Commits

Author SHA1 Message Date
wesley 6eec2cd028 Refactored dot-zshrc config (#46)
Added in command checking to the dot-zshrc file to now check if things
are installed before attempting to set aliases or run programs. This
allows easier sharing of this file for other users or even other
devices.

Reviewed-on: #46
2026-07-04 12:40:33 -04:00
wesley 80c8976c9d Deleted netspeed from tmux status bar (#46)
Decided that the netspeed isn't needed on the status bar and it kind of
gets in the way so decided to remove it.

Reviewed-on: #46
2026-06-06 19:07:01 -04:00
wesley 40de6cd46e Merge pull request 'Added stow. alias' (#44) from stow-tweak into development
Reviewed-on: #44
2026-05-20 20:18:34 -04:00
wesley 11a748fac0 Added stow. alias
Added a stow. alias as a shorthand for running stow --dotfiles.
2026-05-20 20:17:25 -04:00
wesley eeb0247665 Merge pull request 'Changed tmux theme for readability' (#42) from theme-tweak into development
Reviewed-on: #42
2026-05-20 20:07:05 -04:00
wesley b69f4a8240 Changed tmux theme for readability
Chaned the tmux theme for the numbering of the windows from dsquare to
fsquare. This gives us a filled in square with contrast to easily see
the window numbers.
2026-05-20 20:04:24 -04:00
wesley 0b3c4a72f0 Merge pull request 'Merge pull request 'Release 1.0' (#31) from main into development (#35)' (#40) from tmux-cleanup into development
Reviewed-on: #40
2026-05-18 20:40:21 -04:00
wesley 57f15be7c5 Merge branch 'development' into tmux-cleanup 2026-05-18 20:39:50 -04:00
wesley d7cafe13f9 Merge pull request 'Added Neorg' (#39) from neorg-install into development
Reviewed-on: #39
2026-05-18 19:21:20 -04:00
wesley 83c2cc26ff Added Neorg
Added in Neorg. This is just a base setup, could probably use some
tweaking, but that will be in further development. For now loading this
works.
2026-05-18 19:19:59 -04:00
wesley 2c994818e3 Cleaning up neovim configuration (#37)
Due to the fact that this config is not used we are going to clean this
up. Going forward only the plugins directory will be used so that any
custom plugins I want to add can be added here and managed locally. This
leaves the neovim distribution (if wanted) up to the user.

Reviewed-on: #37
2026-05-18 18:51:16 -04:00
wesley 419a2cdc2c General Fixes (#36)
Fixed issue where when opening a second terminal it'd open in the same
tmux session making it so that it's just a mirror of the first terminal.
Closing that terminal would close all terminals. Also added an alias to
vim which calls nvim

Reviewed-on: #36
2026-05-18 18:48:49 -04:00
wesley 089fcab83b Changed tokyo night theme (#34)
Changed the tokyonight theme off of powerkit as powerkit was way to
slow. Needed something more snappy.

Reviewed-on: #34
2026-05-15 06:47:51 -04:00
wesley bb6cd297c2 Merge pull request 'Customized tmux (#32)' (#33) from main into development
Reviewed-on: #33
2026-05-14 21:53:12 -04:00
wesley 620574ea19 Merge pull request 'Release 1.0' (#31) from main into development
Reviewed-on: #31
2026-01-13 17:51:34 -05:00
3 changed files with 59 additions and 16 deletions
@@ -0,0 +1,21 @@
return {
"nvim-neorg/neorg",
lazy = false,
version = "*",
config = function()
require("neorg").setup({
load = {
["core.defaults"] = {},
["core.concealer"] = {},
["core.dirman"] = {
config = {
workspaces = {
notes = "~/notes",
},
default_workspace = "notes",
},
},
},
})
end,
}
+1 -3
View File
@@ -6,9 +6,7 @@ set -g @plugin 'janoamaral/tokyo-night-tmux'
# Tokyo Night config
set -g @tokyo-night-tmux_theme 'storm'
set -g @tokyo-night-tmux_show_netspeed 1
set -g @tokyo-night-tmux_netspeed_iface "wlp4s0"
set -g @tokyo-night-tmux_window_id_style dsquare
set -g @tokyo-night-tmux_window_id_style fsquare
# Set mouse on so that we can scroll with the mouse
set -g mouse on
+37 -13
View File
@@ -3,22 +3,36 @@
############### ALIASES ####################
# Load bottom with the proper color scheme
alias btm="btm --theme=gruvbox"
if command -v btm &>/dev/null; then
alias btm="btm --theme=gruvbox"
fi
# Remap ls to use lsd
alias ls="lsd"
# Add alias for la to call lsd -lah
alias la="lsd -lah"
if command -v lsd &>/dev/null; then
alias ls="lsd"
# Add alias for la to call lsd -lah
alias la="lsd -lah"
fi
# Replace cat with bat
alias cat="bat"
if command -v bat &>/dev/null; then
alias cat="bat"
fi
# Alias cd to z for zoxide
alias cd="z"
if command -v zoxide &>/dev/null; then
alias cd="z"
fi
# Alias vim to nvim
alias vim="nvim"
if command -v nvim &>/dev/null; then
alias vim="nvim"
fi
# Alias for stow --dotfiles
if command -v stow &>/dev/null; then
alias stow.="stow --dotfiles"
fi
############### END ALIASES ###############
@@ -28,7 +42,9 @@ alias vim="nvim"
export PATH=$HOME/.local/bin:$PATH
# Export my local-progs directory to find executables
export PATH=$HOME/local-progs/:$PATH
if [[ -d "$HOME/local-progs" ]]; then
export PATH=$HOME/local-progs/:$PATH
fi
# Pre-configure settings for zsh-vi-mode
function zvm_config() {
@@ -40,17 +56,25 @@ function zvm_config() {
# Add in our fzf integrations for zsh
# Comment if you don't want the fzf integration
source <(fzf --zsh)
if command -v fzf &>/dev/null; then
source <(fzf --zsh)
fi
# Enable vi mode for zsh
source $HOME/local-progs/zsh-vi-mode/zsh-vi-mode.plugin.zsh
if [[ -f "$HOME/local-progs/zsh-vi-mode/zsh-vi-mode.plugin.zsh" ]]; then
source $HOME/local-progs/zsh-vi-mode/zsh-vi-mode.plugin.zsh
fi
# We want to make sure that autocompletions are loaded
autoload -Uz compinit && compinit
# Initialize zoxide
eval "$(zoxide init zsh)"
if command -v zoxide &>/dev/null; then
eval "$(zoxide init zsh)"
fi
# Finally we want to use starship for our prompt
# (because rust that's why)
eval "$(starship init zsh)"
if command -v starship &>/dev/null; then
eval "$(starship init zsh)"
fi