diff options
| author | Ryan Schanzenbacher <ryan@rschanz.org> | 2023-09-04 13:26:42 -0400 |
|---|---|---|
| committer | Ryan Schanzenbacher <ryan@rschanz.org> | 2023-09-04 13:26:42 -0400 |
| commit | 8eccf674b98c25e39954e75f11f5ddcd06392637 (patch) | |
| tree | a432013aee7ccef5d3b0c7c9a2b141fafe7add39 | |
| parent | 7c01f4cdc87ad82b1af4daca8d74b379acb6fa3b (diff) | |
added python lsp by default
| -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({ |
