This repository was archived by the owner on Apr 8, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ return {
3939 -- "go",
4040 },
4141 ignore_filetypes = { -- disable format on save for specified filetypes
42- -- "python ",
42+ " lua " ,
4343 },
4444 },
4545 disabled = { -- disable formatting capabilities for the listed language servers
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ return {
2424 { import = " astrocommunity.pack.docker" },
2525 -- Treesitter: json & jsonc, Lsp: jsonls, Lint/format: stylua
2626 { import = " astrocommunity.pack.json" },
27+ -- Treesitter: lua, Lsp: lua_ls, Lint/format: stylua
28+ { import = " astrocommunity.pack.lua" },
2729
2830 -- Project
2931 { import = " astrocommunity.project.project-nvim" }, -- very nice
Original file line number Diff line number Diff line change 77 opts = function (_ , opts )
88 -- add more things to the ensure_installed table protecting against community packs modifying it
99 opts .ensure_installed = require (" astronvim.utils" ).list_insert_unique (opts .ensure_installed , {
10- " lua_ls" ,
1110 " marksman" , -- Markdown structure
1211 " yamlls" ,
1312 })
@@ -21,7 +20,6 @@ return {
2120 -- add more things to the ensure_installed table protecting against community packs modifying it
2221 opts .ensure_installed = require (" astronvim.utils" ).list_insert_unique (opts .ensure_installed , {
2322 -- "prettier",
24- " stylua" ,
2523 " alex" , -- neutral language lint
2624 " markdownlint" , -- markdown lint & format
2725 })
Original file line number Diff line number Diff line change 33 opts = function (_ , opts )
44 -- add more things to the ensure_installed table protecting against community packs modifying it
55 opts .ensure_installed = require (" astronvim.utils" ).list_insert_unique (opts .ensure_installed , {
6- -- "lua"
76 })
87 end ,
98}
You can’t perform that action at this time.
0 commit comments