feat: add urlview

This commit is contained in:
Nydragon 2024-05-19 16:07:29 +09:00
parent 337ac1c32d
commit e9c3793331
2 changed files with 14 additions and 0 deletions

View file

@ -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",

View file

@ -37,6 +37,10 @@ wk.register({
"<cmd>TodoTelescope <cr>",
"Open Todo in Telescope",
},
u = {
"<cmd>UrlView<cr>",
"Display and open URLs in current buffer",
},
},
n = {
"Terminal",