nvim

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 8dcbcd3325b34b1a1dd2da8d5aab3a4a29065435
parent fdd7ea1b2d2493dcaf80ebf7a67c0368821d9479
Author: Andrew Laack <andrew@laack.co>
Date:   Wed, 18 Feb 2026 05:04:08 -0600

Revert

Diffstat:
Mlua/core/plugins.lua | 38+++++++++++++++++++-------------------
1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua @@ -20,7 +20,7 @@ return require("packer").startup(function(use) -- npm install -- See :messages after trying to run MarkdownPreview from nvim to see diagnostic messages. - use({ "iamcco/markdown-preview.nvim", run = "cd app && npm install", setup = function() vim.g.mkdp_filetypes = { "markdown" } end, ft = { "markdown" }, }) +-- use({ "iamcco/markdown-preview.nvim", run = "cd app && npm install", setup = function() vim.g.mkdp_filetypes = { "markdown" } end, ft = { "markdown" }, }) use('L3MON4D3/LuaSnip') require("luasnip.loaders.from_lua").load({paths = "~/.config/nvim/LuaSnip/"}) @@ -169,24 +169,24 @@ require("luasnip").config.set_config({ -- Setting LuaSnip config -- } -- -- Tree sitter (syntax highlighting) - use({ - "nvim-treesitter/nvim-treesitter", - run = ":TSUpdate", - config = function() - require("nvim-treesitter.configs").setup({ - ensure_installed = { "java", "lua", "python", "javascript", "html", "markdown", "latex" }, - ignore_install = { "latex" }, - auto_install = true, - highlight = { - enable = true, - additional_vim_regex_highlighting = { "ruby", "markdown" }, - }, - indent = { - enable = true, - }, - }) - end, - }) + -- Tree sitter (syntax highlighting) + use("nvim-treesitter/nvim-treesitter") + + require'nvim-treesitter.config'.setup { + ensure_installed = { "java", "lua", "python", "javascript", "html", "markdown" , "latex"}, + + ignore_install = {"latex"}, -- Disables latex tree-sitter + + auto_install = true, + highlight = { + enable = true, -- Enable highlighting + additional_vim_regex_highlighting = { 'ruby', 'markdown' }, + }, + indent = { + enable = true, -- Enable indentation + }, + } + use({