1 Commits

Author SHA1 Message Date
wesley caf75eb73d Cleaning up neovim configuration
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.
2026-05-18 18:40:24 -04:00
4 changed files with 2 additions and 29 deletions
@@ -1,21 +0,0 @@
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_theme 'storm'
set -g @tokyo-night-tmux_show_netspeed 1 set -g @tokyo-night-tmux_show_netspeed 1
set -g @tokyo-night-tmux_netspeed_iface "wlp4s0" set -g @tokyo-night-tmux_netspeed_iface "wlp4s0"
set -g @tokyo-night-tmux_window_id_style fsquare set -g @tokyo-night-tmux_window_id_style dsquare
# Set mouse on so that we can scroll with the mouse # Set mouse on so that we can scroll with the mouse
set -g mouse on set -g mouse on
+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" } config.default_prog = { "tmux", "new-session", "-A", "-s", "main" }
return config return config
-6
View File
@@ -17,12 +17,6 @@ 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"
# Alias for stow --dotfiles
alias stow.="stow --dotfiles"
############### END ALIASES ############### ############### END ALIASES ###############
############### BEGIN EXPORTS ############# ############### BEGIN EXPORTS #############