diff options
| -rw-r--r-- | dot-config/nvim/plugin/lsp.lua | 2 | ||||
| -rw-r--r-- | dot-config/nvim/plugin/treesitter.lua | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/dot-config/nvim/plugin/lsp.lua b/dot-config/nvim/plugin/lsp.lua index 5d26352..15bfbdf 100644 --- a/dot-config/nvim/plugin/lsp.lua +++ b/dot-config/nvim/plugin/lsp.lua @@ -9,6 +9,7 @@ require("mason").setup() vim.lsp.enable({ "expert", -- elixir "lua_ls", -- lua + "ruff", --python "tinymist", -- typst }) @@ -17,6 +18,7 @@ require("conform").setup({ formatters_by_ft = { elixir = { "mix" }, lua = { "stylua" }, + python = { "ruff format" }, typst = { "typstyle" }, }, diff --git a/dot-config/nvim/plugin/treesitter.lua b/dot-config/nvim/plugin/treesitter.lua index cdefae4..db5bfa4 100644 --- a/dot-config/nvim/plugin/treesitter.lua +++ b/dot-config/nvim/plugin/treesitter.lua @@ -8,6 +8,7 @@ require("nvim-treesitter.configs").setup({ "eex", -- elixir "elixir", "heex", -- elixir + "python", "typst", }, highlight = { |
