diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index ac38d67..753dbaa 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -45,6 +45,9 @@ require("lazy").setup({ "nvim-treesitter/nvim-treesitter", build = ":TSUpdate", enabled = true, + opts = { + ensure_installed = { "c", "lua", "vim", "vimdoc", "query" }, + }, }, { "neovim/nvim-lspconfig", -- Configurations for Nvim LSP @@ -63,6 +66,13 @@ require("lazy").setup({ end, }, }, + { + "axieax/urlview.nvim", + opts = { + default_picker = "telescope", + default_action = "system", + }, + }, "preservim/nerdcommenter", -- (batch)commenting tool { "m4xshen/autoclose.nvim", diff --git a/nvim/lua/which-key-config.lua b/nvim/lua/which-key-config.lua index 384684e..e1178d6 100644 --- a/nvim/lua/which-key-config.lua +++ b/nvim/lua/which-key-config.lua @@ -37,6 +37,10 @@ wk.register({ "TodoTelescope ", "Open Todo in Telescope", }, + u = { + "UrlView", + "Display and open URLs in current buffer", + }, }, n = { "Terminal",