add neotree configs and remove redundant stuff

This commit is contained in:
2025-08-12 09:24:23 +01:00
parent e3bd8537e2
commit 7f529c4270
6 changed files with 35 additions and 43 deletions

View File

@@ -42,13 +42,13 @@ return {
},
-- You can disable default plugins as follows:
-- { "max397574/better-escape.nvim", enabled = false },
{ 'max397574/better-escape.nvim', enabled = false },
-- You can also easily customize additional setup of plugins that is outside of the plugin's setup call
{
'L3MON4D3/LuaSnip',
config = function(plugin, opts)
require 'astronvim.plugins.configs.luasnip' (plugin, opts) -- include the default astronvim config that calls the setup call
require 'astronvim.plugins.configs.luasnip'(plugin, opts) -- include the default astronvim config that calls the setup call
-- add more custom luasnip configuration such as filetype extend or custom snippets
local luasnip = require 'luasnip'
luasnip.filetype_extend('javascript', { 'javascriptreact' })
@@ -58,7 +58,7 @@ return {
{
'windwp/nvim-autopairs',
config = function(plugin, opts)
require 'astronvim.plugins.configs.nvim-autopairs' (plugin, opts) -- include the default astronvim config that calls the setup call
require 'astronvim.plugins.configs.nvim-autopairs'(plugin, opts) -- include the default astronvim config that calls the setup call
-- local npairs = require "nvim-autopairs"
-- local Rule = require "nvim-autopairs.rule"