6 Commits

Author SHA1 Message Date
Shaun Setlock
92c3655325 Adding back markdown linting. Ignore some rules. 2026-01-14 20:10:01 -05:00
Shaun Setlock
d5b22a8991 Add toml language extra.
All checks were successful
Build and Push Docker Image / build-push (push) Successful in 23s
2026-01-02 21:34:52 -05:00
Shaun Setlock
38f3be5d5f Disable bases.
All checks were successful
Build and Push Docker Image / build-push (push) Successful in 6m53s
2026-01-02 19:30:32 -05:00
Shaun Setlock
eed0eba26d Simplifying neovim config. Just lazy default plugin file, catpuccin, and oil. 2026-01-02 19:20:36 -05:00
Shaun Setlock
e76ea35421 Turn off some Obsidian core plug-ins.
All checks were successful
Build and Push Docker Image / build-push (push) Successful in 6m16s
2025-11-02 21:08:25 -05:00
8419b4963b Merge pull request 'feature/updates-during-surface-build' (#26) from feature/updates-during-surface-build into master
All checks were successful
Build and Push Docker Image / build-push (push) Successful in 14s
Reviewed-on: #26
2025-11-02 19:18:55 -05:00
7 changed files with 9 additions and 2 deletions

View File

@@ -11,6 +11,7 @@
"lazyvim.plugins.extras.lang.markdown", "lazyvim.plugins.extras.lang.markdown",
"lazyvim.plugins.extras.lang.python", "lazyvim.plugins.extras.lang.python",
"lazyvim.plugins.extras.lang.sql", "lazyvim.plugins.extras.lang.sql",
"lazyvim.plugins.extras.lang.toml",
"lazyvim.plugins.extras.lang.yaml", "lazyvim.plugins.extras.lang.yaml",
"lazyvim.plugins.extras.util.dot", "lazyvim.plugins.extras.util.dot",
"lazyvim.plugins.extras.util.gitui", "lazyvim.plugins.extras.util.gitui",

View File

@@ -5,7 +5,7 @@ return {
opts = { opts = {
linters = { linters = {
["markdownlint-cli2"] = { ["markdownlint-cli2"] = {
args = { "--config", HOME .. "/.config/nvim/lua/plugins/.markdownlint-cli2.yaml", "--" }, args = { "--config", HOME .. "/.config/nvim/lua/plugins/markdownlint-cli2.yaml", "--" },
}, },
}, },
}, },

View File

@@ -27,5 +27,11 @@
"file-recovery": true, "file-recovery": true,
"publish": false, "publish": false,
"sync": false, "sync": false,
"webviewer": false "webviewer": false,
"footnotes": false,
<<<<<<< Updated upstream
"bases": false
=======
"bases": true
>>>>>>> Stashed changes
} }