3 Commits

Author SHA1 Message Date
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 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
@@ -10,6 +10,6 @@ config.enable_tab_bar = false
config.initial_cols = 205 config.initial_cols = 205
config.initial_rows = 45 config.initial_rows = 45
config.font_size = 10 config.font_size = 10
config.default_prog = { "tmux", "new-session", "-A", "-s", "main" } config.default_prog = { "tmux", "new-session" }
return config return config
+3
View File
@@ -17,6 +17,9 @@ alias cat="bat"
# Alias cd to z for zoxide # Alias cd to z for zoxide
alias cd="z" alias cd="z"
# Alias vim to nvim
alias vim="nvim"
############### END ALIASES ############### ############### END ALIASES ###############
############### BEGIN EXPORTS ############# ############### BEGIN EXPORTS #############