complete basic config of my neovim

This commit is contained in:
gameloader
2022-10-07 12:15:17 +08:00
parent d783c6fa4f
commit eb733b4c66
10 changed files with 308 additions and 215 deletions

View File

@ -1,13 +1,12 @@
require("mason").setup({
automatic_installation = true, -- automatically detect which servers to install (based on which servers are set up via lspconfig)
ui = {
icons = {
server_installed = "",
server_pending = "",
server_uninstalled = ""
}
}
automatic_installation = true, -- automatically detect which servers to install (based on which servers are set up via lspconfig)
ui = {
icons = {
server_installed = "",
server_pending = "",
server_uninstalled = "",
},
},
})
require("mason-lspconfig").setup()

View File

@ -0,0 +1 @@
require("neogit").setup({})