Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 40de6cd46e | |||
| 11a748fac0 | |||
| eeb0247665 | |||
| b69f4a8240 | |||
| 0b3c4a72f0 | |||
| 57f15be7c5 | |||
| d7cafe13f9 | |||
| 83c2cc26ff | |||
| d2af86a011 | |||
| 2c994818e3 | |||
| 419a2cdc2c | |||
| 2f96f042ba |
@@ -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,
|
||||||
|
}
|
||||||
@@ -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 dsquare
|
set -g @tokyo-night-tmux_window_id_style fsquare
|
||||||
|
|
||||||
# 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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -17,6 +17,12 @@ 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 #############
|
||||||
|
|||||||
Reference in New Issue
Block a user