aboutsummaryrefslogtreecommitdiff
path: root/Common/nvim/lua/plugins.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Common/nvim/lua/plugins.lua')
-rwxr-xr-xCommon/nvim/lua/plugins.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua
index 829ca15..2ad775f 100755
--- a/Common/nvim/lua/plugins.lua
+++ b/Common/nvim/lua/plugins.lua
@@ -57,22 +57,6 @@ return require('packer').startup(function(use)
'neovim/nvim-lspconfig' ,
}
- -- Treesitter, quicker highlighting and such
- use {
- "nvim-treesitter/nvim-treesitter",
- config = function()
- require'nvim-treesitter.configs'.setup {
- ensure_installed = { "c", "cpp", "python", "php", "java", "lua", "vim", "vimdoc", "query", "php", "sql" },
- sync_install = false,
- auto_install = true,
- highlight = {
- enable = false,
- },
- --ignore_install = { "javascript" },
- }
- end
- }
-
-- vim-dadbob (run sql directly)
use {
'tpope/vim-dadbod',