add postgresql
This commit is contained in:
parent
953985a3ea
commit
2578cd7a6d
10 changed files with 164 additions and 2 deletions
|
@ -33,7 +33,20 @@ require("lazy").setup({
|
|||
{ "hrsh7th/vim-vsnip" },
|
||||
|
||||
-- Treesitter
|
||||
{ "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" },
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
build = ":TSUpdate",
|
||||
config = function()
|
||||
require("nvim-treesitter.configs").setup({
|
||||
ensure_installed = { "ruby", "lua", "vim", "bash", "json" }, -- include ruby
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
})
|
||||
end
|
||||
},
|
||||
|
||||
|
||||
-- Appearance
|
||||
{ "tomasiser/vim-code-dark" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue