mirror of
https://github.com/ForeverPyrite/dotfiles.git
synced 2025-12-10 01:08:06 +00:00
See I am WAYY too lazy to write all that CSS...maybe if I were like a graphic designer or something but I'm not. Oddly though, this feels like a desktop environment. I'm a little worried about battery life too. I'm happiest that this got nightlight to work lol. I also switched to NetworkManager for the interface. I think doing stuff very manually was good education and I don't regret it, but...lets be so fr there's no real reason to be doing all that.
28 lines
1005 B
Lua
28 lines
1005 B
Lua
-- I don't know why I got rid of this lol, it's not like markdown-oxide was gonna replace it
|
|
-- For configuration options: https://github.com/obsidian-nvim/obsidian.nvim/blob/main/lua/obsidian/config/default.lua
|
|
return {
|
|
"obsidian-nvim/obsidian.nvim",
|
|
version = "*", -- recommended, use latest release instead of latest commit
|
|
ft = "markdown",
|
|
-- Replace the above line with this if you only want to load obsidian.nvim for markdown files in your vault:
|
|
-- event = {
|
|
-- -- If you want to use the home shortcut '~' here you need to call 'vim.fn.expand'.
|
|
-- -- E.g. "BufReadPre " .. vim.fn.expand "~" .. "/my-vault/*.md"
|
|
-- -- refer to `:h file-pattern` for more examples
|
|
-- "BufReadPre path/to/my-vault/*.md",
|
|
-- "BufNewFile path/to/my-vault/*.md",
|
|
-- },
|
|
---@module 'obsidian'
|
|
---@type obsidian.config
|
|
opts = {
|
|
workspaces = {
|
|
{
|
|
name = "Vault",
|
|
path = "~/Obsidian/Vault/",
|
|
},
|
|
},
|
|
|
|
-- see below for full list of options 👇
|
|
},
|
|
}
|