diff --git a/nvim/dot-config/nvim/lua/plugins/neorg.lua b/nvim/dot-config/nvim/lua/plugins/neorg.lua new file mode 100644 index 0000000..8c3dcad --- /dev/null +++ b/nvim/dot-config/nvim/lua/plugins/neorg.lua @@ -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, +} diff --git a/tmux/dot-config/tmux/tmux.conf b/tmux/dot-config/tmux/tmux.conf index 94dde2a..13dcc61 100644 --- a/tmux/dot-config/tmux/tmux.conf +++ b/tmux/dot-config/tmux/tmux.conf @@ -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 diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index 5f633b7..5e99b66 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -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 #############