Update pyright settings & add tree-sitter/telescope settings

This commit is contained in:
Sonny Bakker 2022-09-02 20:56:44 +02:00
parent d325fee87f
commit 544b5a44a2
5 changed files with 29 additions and 4 deletions

9
nvim/lua/tree-sitter.lua Normal file
View file

@ -0,0 +1,9 @@
local tree_sitter_config = require('nvim-treesitter.configs')
tree_sitter_config.setup {
ensure_installed = {
'lua', 'yaml', 'bash', 'python', 'javascript', 'css', 'scss', 'html',
'json', 'dockerfile', 'markdown',
},
auto_install = true,
}