summaryrefslogtreecommitdiff
path: root/mason.lua
diff options
context:
space:
mode:
Diffstat (limited to 'mason.lua')
-rw-r--r--mason.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/mason.lua b/mason.lua
new file mode 100644
index 0000000..2f8e561
--- /dev/null
+++ b/mason.lua
@@ -0,0 +1,22 @@
+return {
+ "williamboman/mason.nvim",
+ dependencies = {
+ "williamboman/mason-lspconfig.nvim",
+ },
+ config = function()
+ require("mason").setup({
+ ensure_installed = {
+ "black",
+ "isort",
+ "stylua",
+ "tex-fmt",
+ "shfmt",
+ },
+ })
+ require("mason-lspconfig").setup({
+ ensure_installed = {
+ "pyright",
+ },
+ })
+ end,
+}