Compare commits

...

3 commits

2 changed files with 7 additions and 2 deletions

View file

@ -38,8 +38,11 @@ return {
{ import = "astrocommunity.file-explorer.oil-nvim" },
-- git
-- { import = "astrocommunity.git.neogit" },
{ import = "astrocommunity.git.gitgraph-nvim" },
{ import = "astrocommunity.git.neogit" },
-- icon
{ import = "astrocommunity.icon.mini-icons" },
-- lsp
{ import = "astrocommunity.lsp.inc-rename-nvim" },

View file

@ -12,7 +12,7 @@ return {
opts = {
-- Configuration table of features provided by AstroLSP
features = {
autoformat = true, -- enable or disable auto formatting on start
autoformat = false, -- enable or disable auto formatting on start
codelens = true, -- enable/disable codelens refresh on start
inlay_hints = false, -- enable/disable inlay hints on start
semantic_tokens = true, -- enable/disable semantic token highlighting
@ -23,9 +23,11 @@ return {
format_on_save = {
enabled = true, -- enable or disable format on save globally
allow_filetypes = { -- enable format on save for specified filetypes only
"rust",
-- "go",
},
ignore_filetypes = { -- disable format on save for specified filetypes
"java",
-- "python",
},
},