more updates
This commit is contained in:
parent
46d5ac6d62
commit
6374995a04
@ -11,8 +11,9 @@ return {
|
|||||||
["core.norg.dirman"] = {
|
["core.norg.dirman"] = {
|
||||||
config = {
|
config = {
|
||||||
workspaces = {
|
workspaces = {
|
||||||
work = "~/work/notes",
|
work = "~/work",
|
||||||
personal = "~/notes",
|
personal = "~/notes",
|
||||||
|
journal = "~/notes/journal/",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -28,13 +29,4 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
-- keys = {
|
|
||||||
-- {
|
|
||||||
-- "<leader>nw",
|
|
||||||
-- function()
|
|
||||||
-- require("lazyvim.utils.neorg").workspace_switcher()
|
|
||||||
-- end,
|
|
||||||
-- desc = "Workspace",
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -78,6 +78,8 @@ return {
|
|||||||
n = {
|
n = {
|
||||||
name = "+neorg",
|
name = "+neorg",
|
||||||
n = { "<cmd>Neorg<cr>", "Open Neorg" },
|
n = { "<cmd>Neorg<cr>", "Open Neorg" },
|
||||||
|
c = { "<cmd>Neorg toggle-concealer<cr>", "Toggle Concealer" },
|
||||||
|
t = { "<cmd>Neorg tangle current-file<cr>", "Tangle Current File" },
|
||||||
j = { "<cmd>Neorg journal<cr>", "Open Neorg Journal" },
|
j = { "<cmd>Neorg journal<cr>", "Open Neorg Journal" },
|
||||||
w = {
|
w = {
|
||||||
function()
|
function()
|
||||||
|
|||||||
@ -60,7 +60,7 @@ export QT_QPA_PLATFORMTHEME="gtk2" # Have QT use gtk2 theme.
|
|||||||
export MOZ_USE_XINPUT2="1" # Mozilla smooth scrolling/touchpads.
|
export MOZ_USE_XINPUT2="1" # Mozilla smooth scrolling/touchpads.
|
||||||
export AWT_TOOLKIT="MToolkit wmname LG3D" #May have to install wmname
|
export AWT_TOOLKIT="MToolkit wmname LG3D" #May have to install wmname
|
||||||
export _JAVA_AWT_WM_NONREPARENTING=1 # Fix for Java applications in dwm
|
export _JAVA_AWT_WM_NONREPARENTING=1 # Fix for Java applications in dwm
|
||||||
export ZK_NOTEBOOK_DIR="$HOME/notes"
|
export ZK_NOTEBOOK_DIR="$HOME/notes/zk"
|
||||||
|
|
||||||
# This is the list for lf icons:
|
# This is the list for lf icons:
|
||||||
export LF_ICONS="di=:\
|
export LF_ICONS="di=:\
|
||||||
|
|||||||
@ -30,10 +30,10 @@ ZSH_THEME="inkletblotsh"
|
|||||||
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
|
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
|
||||||
# or set a custom format using the strftime function format specifications,
|
# or set a custom format using the strftime function format specifications,
|
||||||
# see 'man strftime' for details.
|
# see 'man strftime' for details.
|
||||||
HIST_STAMPS="yyyy-mm-dd"
|
HIST_STAMPS="yyyy-mm-dd"
|
||||||
|
|
||||||
# Would you like to use another custom folder than $ZSH/custom?
|
# Would you like to use another custom folder than $ZSH/custom?
|
||||||
ZSH_CUSTOM=/home/solomon/.config/zsh
|
ZSH_CUSTOM=/home/solomon/.config/zsh
|
||||||
|
|
||||||
# Which plugins would you like to load?
|
# Which plugins would you like to load?
|
||||||
# Standard plugins can be found in $ZSH/plugins/
|
# Standard plugins can be found in $ZSH/plugins/
|
||||||
@ -43,19 +43,19 @@ ZSH_THEME="inkletblotsh"
|
|||||||
plugins=(git
|
plugins=(git
|
||||||
battery
|
battery
|
||||||
git-flow
|
git-flow
|
||||||
git-prompt vi-mode)
|
git-prompt vi-mode)
|
||||||
|
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
# You may need to manually set your language environment
|
# You may need to manually set your language environment
|
||||||
export LANG=en_US.UTF-8
|
export LANG=en_US.UTF-8
|
||||||
|
|
||||||
# Preferred editor for local and remote sessions
|
# Preferred editor for local and remote sessions
|
||||||
if [[ -n $SSH_CONNECTION ]]; then
|
if [[ -n $SSH_CONNECTION ]]; then
|
||||||
export EDITOR='nano'
|
export EDITOR='nano'
|
||||||
else
|
else
|
||||||
export EDITOR='nvim'
|
export EDITOR='nvim'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
HISTSIZE=1000000
|
HISTSIZE=1000000
|
||||||
SAVEHIST=1000000
|
SAVEHIST=1000000
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user