nvim: remove unused configs

This commit is contained in:
Marco Thomas
2023-02-16 22:31:20 +01:00
parent 88aa1405a4
commit 2d4ff7ccde
3 changed files with 2 additions and 29 deletions

View File

@@ -81,13 +81,12 @@ return require('packer').startup(function(use)
"neovim/nvim-lspconfig", -- Easier to manage LSP servers
requires = {
"williamboman/nvim-lsp-installer", -- Easy to install LSP servers
"simrat39/rust-tools.nvim" -- Cooler LSP stuff for Rust
"simrat39/rust-tools.nvim", -- Cooler LSP stuff for Rust
"ray-x/lsp_signature.nvim" -- show function signatures, when typing
},
config = function() require('plugins.nvim-lspconfig-conf') end,
})
use 'ray-x/lsp_signature.nvim'
-- Snippets
use({
'hrsh7th/nvim-cmp',

View File

@@ -1,7 +0,0 @@
local neogit = require('neogit')
neogit.setup {
signs = {
section = { "", "" },
item = { "", "" },
}
}

View File

@@ -1,19 +0,0 @@
require("noice").setup({
lsp = {
-- override markdown rendering so that **cmp** and other plugins use **Treesitter**
override = {
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
["vim.lsp.util.stylize_markdown"] = true,
["cmp.entry.get_documentation"] = true,
},
progress = {
view = "mini",
}
},
messages = {
enabled = true, -- enables the Noice messages UI
view = "mini", -- default view for messages
view_error = "mini", -- view for errors
view_warn = "mini", -- view for warnings
},
})