added markdown preview plugin

This commit is contained in:
2026-03-25 10:59:06 -06:00
parent bed9726930
commit 94b2c40db1
2 changed files with 31 additions and 15 deletions

View File

@@ -23,20 +23,20 @@ return {
opts = {
ensure_installed = {
-- LSP servers
"gopls", -- Go
"lua-language-server", -- Lua
"gopls", -- Go
"lua-language-server", -- Lua
"typescript-language-server", -- TypeScript/JavaScript
"js-debug-adapter", -- JS
"html-lsp", -- HTML
"css-lsp", -- CSS
"json-lsp", -- JSON
"yaml-language-server", -- YAML
"marksman", -- Markdown
"sqlls", -- SQL
"pyright", --Python
"ruff", --Python
"docker-language-server", -- Docker
"zls", -- Zig
"js-debug-adapter", -- JS
"html-lsp", -- HTML
"css-lsp", -- CSS
"json-lsp", -- JSON
"yaml-language-server", -- YAML
"marksman", -- Markdown
"sqlls", -- SQL
"pyright", --Python
"ruff", --Python
"docker-language-server", -- Docker
"zls", -- Zig
-- Linters
"golangci-lint",
"eslint_d",
@@ -109,8 +109,15 @@ return {
-- Lua
lua_ls = {
root_dir = make_root_detector({ ".luarc.json", ".luarc.jsonc", ".luacheckrc", ".stylua.toml", "stylua.toml",
"selene.toml", "selene.yml" }),
root_dir = make_root_detector({
".luarc.json",
".luarc.jsonc",
".luacheckrc",
".stylua.toml",
"stylua.toml",
"selene.toml",
"selene.yml",
}),
settings = {
Lua = {
workspace = {
@@ -235,6 +242,8 @@ return {
"gitcommit",
"git_rebase",
"dockerfile",
"latex",
"typst",
},
highlight = { enable = true },
indent = { enable = true },

7
lua/plugins/markdown.lua Normal file
View File

@@ -0,0 +1,7 @@
return {
"OXY2DEV/markview.nvim",
lazy = false,
dependencies = {
"saghen/blink.cmp",
},
}