Compare commits
No commits in common. "6554d693356ad9aed4bac0f010780ba5ef917def" and "6e08297438cf28a7041c80a8df075e3d85d04578" have entirely different histories.
6554d69335
...
6e08297438
@ -61,12 +61,6 @@ return {
|
||||
}
|
||||
end,
|
||||
},
|
||||
{
|
||||
"nvim-telescope/telescope-bibtex.nvim",
|
||||
config = function()
|
||||
require "telescope".load_extension("bibtex")
|
||||
end,
|
||||
},
|
||||
{
|
||||
'numToStr/Comment.nvim',
|
||||
opts = {
|
||||
|
@ -8,7 +8,7 @@ return {
|
||||
},
|
||||
opts = {
|
||||
take_over_my_home = true,
|
||||
auto_set_filetype = false,
|
||||
auto_set_filetype = true,
|
||||
home = "{{ .home }}/doc/zettelkasten",
|
||||
dailies = "{{ .home }}/doc/zettelkasten/daily",
|
||||
weeklies = "{{ .home }}/doc/zettelkasten/weekly",
|
||||
@ -78,4 +78,38 @@ return {
|
||||
vim.api.nvim_set_hl(0, "tkBrackets", { fg = "gray", bg = "gray" })
|
||||
end,
|
||||
},
|
||||
{
|
||||
"nvim-neorg/neorg",
|
||||
build = ":Neorg sync-parsers",
|
||||
dependencies = { { "nvim-lua/plenary.nvim" }, { "nvim-neorg/neorg-telescope" } },
|
||||
opts = {
|
||||
load = {
|
||||
["core.defaults"] = {},
|
||||
["core.concealer"] = {},
|
||||
["core.completion"] = {
|
||||
config = {
|
||||
engine = "nvim-cmp",
|
||||
name = "[Norg]",
|
||||
},
|
||||
},
|
||||
["core.integrations.nvim-cmp"] = {},
|
||||
["core.integrations.telescope"] = {},
|
||||
["core.esupports.metagen"] = {
|
||||
config = {
|
||||
type = "auto",
|
||||
},
|
||||
},
|
||||
["core.dirman"] = { -- Manages Neorg workspaces
|
||||
config = {
|
||||
workspaces = {
|
||||
notes = "~/doc/notes/private",
|
||||
work = "~/doc/notes/work",
|
||||
},
|
||||
default_workspace = "work",
|
||||
index = "index.norg",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
@ -420,17 +420,14 @@ return {
|
||||
"nvimdev/dashboard-nvim",
|
||||
event = "VimEnter",
|
||||
opts = function()
|
||||
vim.api.nvim_set_hl(0, "DashboardHeader", { fg = "#79b8ff" })
|
||||
vim.api.nvim_set_hl(0, "DashboardIcon", { fg = "#39c5cf" })
|
||||
vim.api.nvim_set_hl(0, "DashboardKey", { fg = "#39c5cf" })
|
||||
vim.api.nvim_set_hl(0, "DashboardFooter", { fg = "#959da5" })
|
||||
local logo = [[
|
||||
_ _ _ _
|
||||
| | (_) | | | |
|
||||
_ __ ___ ___ ___| |__ _ _ _ ___| |__ __ _ _ __ __| |
|
||||
| '_ ` _ \ / _ \ / _ \ '_ \| | | | / __| '_ \ / _` | '_ \ / _` |
|
||||
| | | | | | (_) | __/ |_) | | |_| \__ \ |_) | (_| | | | | (_| |
|
||||
|_| |_| |_|\___/ \___|_.__/|_|\__,_|___/_.__/ \__,_|_| |_|\__,_| ]]
|
||||
|_| |_| |_|\___/ \___|_.__/|_|\__,_|___/_.__/ \__,_|_| |_|\__,_|
|
||||
]]
|
||||
|
||||
logo = string.rep("\n", 8) .. logo .. "\n\n"
|
||||
|
||||
@ -471,8 +468,8 @@ return {
|
||||
key = "c",
|
||||
},
|
||||
{
|
||||
action = "Telekasten find_notes",
|
||||
desc = " Find notes",
|
||||
action = "Neorg workspace notes",
|
||||
desc = " Neorg notes",
|
||||
icon = " ",
|
||||
key = "n",
|
||||
},
|
||||
|
@ -34,5 +34,5 @@ xidle -timeout 300 -program "/usr/local/bin/slock" &
|
||||
{{- end }}
|
||||
|
||||
xrdb -merge $HOME/.Xresources
|
||||
/home/jan/.fehbg&
|
||||
xsetroot -solid "#282828"
|
||||
exec openbox-session
|
||||
|
Loading…
Reference in New Issue
Block a user