mirror of
https://github.com/ForeverPyrite/dotfiles.git
synced 2025-12-10 01:08:06 +00:00
Trying some Quickshell stuff with Noctalia
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.
This commit is contained in:
@@ -2,7 +2,9 @@
|
||||
"extras": [
|
||||
"lazyvim.plugins.extras.lang.python",
|
||||
"lazyvim.plugins.extras.lang.rust",
|
||||
"lazyvim.plugins.extras.lang.toml"
|
||||
"lazyvim.plugins.extras.lang.tailwind",
|
||||
"lazyvim.plugins.extras.lang.toml",
|
||||
"lazyvim.plugins.extras.util.mini-hipatterns"
|
||||
],
|
||||
"install_version": 8,
|
||||
"news": {
|
||||
|
||||
27
nvim/.config/nvim/lua/plugins/obsidian.lua
Normal file
27
nvim/.config/nvim/lua/plugins/obsidian.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
-- 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 👇
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user