13 Commits

Author SHA1 Message Date
wesley 8ac875adaa Merge pull request 'Stow Tweak' (#45) from development into main
Reviewed-on: #45
2026-05-20 20:20:28 -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 052f7e9012 Change theme for readability. (#43)
Reviewed-on: #43
2026-05-20 20:11:10 -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 c6dc487eac Release v1.3.1 (#41)
Adding neorg to the config, and also cleaned up the tmux package for stow as well to only do the tmux.conf file

Reviewed-on: #41
2026-05-18 20:45: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 d2af86a011 Merge pull request 'Release 1.0' (#31) from main into development (#38)
Reviewed-on: #38
2026-05-18 18:57:37 -04:00
wesley 2f96f042ba Merge pull request 'Release 1.0' (#31) from main into development (#35)
Reviewed-on: #35
2026-05-15 06:50:13 -04:00
3 changed files with 25 additions and 1 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 -1
View File
@@ -8,7 +8,7 @@ set -g @plugin 'janoamaral/tokyo-night-tmux'
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
+3
View File
@@ -20,6 +20,9 @@ alias cd="z"
# Alias vim to nvim
alias vim="nvim"
# Alias for stow --dotfiles
alias stow.="stow --dotfiles"
############### END ALIASES ###############
############### BEGIN EXPORTS #############