This commit is contained in:
2025-08-24 20:10:59 +02:00
parent 643a7dfe04
commit d033bab96e
10 changed files with 39 additions and 27 deletions

View File

@@ -11,7 +11,7 @@ return {
---@type render.md.UserConfig
opts = {
-- run on both Markdown and Quarto files
file_types = { 'markdown', 'quarto' },
file_types = { 'markdown', 'quarto', 'vimwiki' },
-- means that in normal, command, and terminal modes you'll get a rendered view,
-- and in other modes such as insert the marks added by the plugin will disappear.
-- render_modes = { 'n', 'c', 't' },

View File

@@ -18,6 +18,9 @@ return {
---@module 'obsidian'
---@type obsidian.config
opts = {
ui = {
enable = false,
},
legacy_commands = false,
workspaces = {
{

View File

@@ -8,7 +8,7 @@ return {
main = 'nvim-treesitter.configs', -- Sets main module to use for opts
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
opts = {
ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' },
ensure_installed = { 'bash', 'c', 'diff', 'html', 'latex', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'r', 'vim', 'vimdoc' },
-- Autoinstall languages that are not installed
auto_install = true,
highlight = {
@@ -27,4 +27,5 @@ return {
-- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context
-- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects
},
}
}