Compare commits

..

No commits in common. "3110e12437edc29e60d8cc692201c3e307677359" and "a615daab17ba0404e95950b0a3d3662d25dc1d25" have entirely different histories.

2 changed files with 2 additions and 7 deletions

View file

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

View file

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