diff options
| -rw-r--r-- | home-config/nvim/config/init.vim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/home-config/nvim/config/init.vim b/home-config/nvim/config/init.vim index e30572a..b643b99 100644 --- a/home-config/nvim/config/init.vim +++ b/home-config/nvim/config/init.vim | |||
| @@ -41,7 +41,9 @@ require('lualine').setup() | |||
| 41 | require('coq') | 41 | require('coq') |
| 42 | require('orgmode').setup_ts_grammar() | 42 | require('orgmode').setup_ts_grammar() |
| 43 | require("mason").setup() | 43 | require("mason").setup() |
| 44 | require("mason-lspconfig").setup() | 44 | require("mason-lspconfig").setup { |
| 45 | ensure_installed = { "pyright" }, | ||
| 46 | } | ||
| 45 | 47 | ||
| 46 | require("mason-lspconfig").setup_handlers { | 48 | require("mason-lspconfig").setup_handlers { |
| 47 | function (server_name) | 49 | function (server_name) |
| @@ -54,7 +56,7 @@ require('nvim-treesitter.configs').setup { | |||
| 54 | enable = true, | 56 | enable = true, |
| 55 | additional_vim_regex_highlighting = {'org'}, | 57 | additional_vim_regex_highlighting = {'org'}, |
| 56 | }, | 58 | }, |
| 57 | ensure_installed = {'org', 'vim'}, | 59 | ensure_installed = {'org', 'vim', 'python'}, |
| 58 | } | 60 | } |
| 59 | 61 | ||
| 60 | require('orgmode').setup({ | 62 | require('orgmode').setup({ |
