mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-04-02 21:19:49 +00:00
Replace neo-tree.nvim with snacks.nvim for file explorer functionality and remove several other plugins including: - mini-animate - mini-starter - indent-blankline The snacks.nvim plugin provides better file explorer, dashboard, indentation guides, and other UI improvements in a more cohesive package. Also removed the large file autocommand as snacks.nvim handles this with its bigfile module.
32 lines
681 B
Lua
32 lines
681 B
Lua
require("plugins.lsp.mason")
|
|
require("plugins.lsp.none-ls")
|
|
require("plugins.lsp.conform")
|
|
require("plugins.lsp.lsp-saga")
|
|
|
|
local win = require("lspconfig.ui.windows")
|
|
win.default_options.border = "rounded"
|
|
|
|
local config = {
|
|
virtual_text = false,
|
|
signs = {
|
|
text = {
|
|
[vim.diagnostic.severity.ERROR] = "",
|
|
[vim.diagnostic.severity.WARN] = "",
|
|
[vim.diagnostic.severity.INFO] = "",
|
|
[vim.diagnostic.severity.HINT] = "",
|
|
},
|
|
},
|
|
update_in_insert = true,
|
|
underline = true,
|
|
severity_sort = true,
|
|
float = {
|
|
focusable = true,
|
|
style = "minimal",
|
|
border = "rounded",
|
|
source = "always",
|
|
header = "",
|
|
prefix = "",
|
|
},
|
|
}
|
|
vim.diagnostic.config(config)
|