- Create separate config files for telescope and nvim-tree in lua/configs/ - Fix plugin syntax (requires -> dependencies for lazy.nvim) - Consolidate duplicate settings into appropriate files - Move plugin configs out of options.lua and mappings.lua - Clean up init.lua to only contain SQL autocmds Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
56 lines
1.2 KiB
Lua
56 lines
1.2 KiB
Lua
return {
|
|
{
|
|
"stevearc/conform.nvim",
|
|
-- event = 'BufWritePre', -- uncomment for format on save
|
|
opts = require "configs.conform",
|
|
},
|
|
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
config = function()
|
|
require "configs.lspconfig"
|
|
end,
|
|
},
|
|
|
|
{
|
|
"nvim-tree/nvim-tree.lua",
|
|
opts = require "configs.nvimtree",
|
|
},
|
|
|
|
{
|
|
'nvim-telescope/telescope.nvim',
|
|
dependencies = { 'nvim-lua/plenary.nvim' },
|
|
config = function()
|
|
require "configs.telescope"
|
|
end
|
|
},
|
|
{
|
|
'nvim-treesitter/nvim-treesitter',
|
|
build = ':TSUpdate',
|
|
config = function()
|
|
require'nvim-treesitter.configs'.setup {
|
|
-- Enable Treesitter syntax highlighting
|
|
ensure_installed = { "markdown", "sql","vim",
|
|
"lua", "vimdoc", "html", "css" }, -- add other languages if needed
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = { "markdown" },
|
|
},
|
|
}
|
|
end,
|
|
},
|
|
{
|
|
'xiyaowong/transparent.nvim',
|
|
lazy = false
|
|
}
|
|
-- {
|
|
-- "nvim-treesitter/nvim-treesitter",
|
|
-- opts = {
|
|
-- ensure_installed = {
|
|
-- "vim", "lua", "vimdoc",
|
|
-- "html", "css"
|
|
-- },
|
|
-- },
|
|
-- },
|
|
}
|