refactor: clean up file tree, remove redundant code, formatting

This commit is contained in:
2024-12-20 18:11:06 -05:00
parent daa0aefd21
commit 660afc8411
33 changed files with 418 additions and 447 deletions
+45 -7
View File
@@ -8,22 +8,60 @@ return {
render = 'compact',
},
},
'nvim-treesitter/nvim-treesitter',
},
event = 'VeryLazy',
opts = {
lsp = {
override = {
['vim.lsp.util.convert_input_to_markdown_lines'] = true,
['vim.lsp.util.stylize_markdown'] = true,
['cmp.entry.get_documentation'] = true,
progress = {
enabled = true,
view = 'mini',
},
hover = {
enabled = true,
silent = true,
},
signature = {
enabled = true,
trigger = true,
luasnip = true,
},
message = {
enabled = true,
view = 'notify',
},
documentation = {
view = 'hover',
opts = {
lang = 'markdown',
},
},
override = {
['vim.lsp.util.convert_input_to_markdown_lines'] = false,
['vim.lsp.util.stylize_markdown'] = false,
['cmp.entry.get_documentation'] = false,
},
},
health = {
checker = true,
},
presets = {
bottom_search = true,
command_palette = false,
long_message_to_split = true,
inc_rename = false,
lsp_doc_border = true,
},
cmdline = {
enabled = true,
},
messages = {
enabled = true,
view_error = 'notify',
view_warn = 'notify',
view_history = 'messages',
view_search = 'virtualtext',
},
popupmenu = {
enabled = true,
},
},
}
}