feat: add urlview
This commit is contained in:
parent
337ac1c32d
commit
e9c3793331
2 changed files with 14 additions and 0 deletions
|
@ -45,6 +45,9 @@ require("lazy").setup({
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
build = ":TSUpdate",
|
build = ":TSUpdate",
|
||||||
enabled = true,
|
enabled = true,
|
||||||
|
opts = {
|
||||||
|
ensure_installed = { "c", "lua", "vim", "vimdoc", "query" },
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"neovim/nvim-lspconfig", -- Configurations for Nvim LSP
|
"neovim/nvim-lspconfig", -- Configurations for Nvim LSP
|
||||||
|
@ -63,6 +66,13 @@ require("lazy").setup({
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"axieax/urlview.nvim",
|
||||||
|
opts = {
|
||||||
|
default_picker = "telescope",
|
||||||
|
default_action = "system",
|
||||||
|
},
|
||||||
|
},
|
||||||
"preservim/nerdcommenter", -- (batch)commenting tool
|
"preservim/nerdcommenter", -- (batch)commenting tool
|
||||||
{
|
{
|
||||||
"m4xshen/autoclose.nvim",
|
"m4xshen/autoclose.nvim",
|
||||||
|
|
|
@ -37,6 +37,10 @@ wk.register({
|
||||||
"<cmd>TodoTelescope <cr>",
|
"<cmd>TodoTelescope <cr>",
|
||||||
"Open Todo in Telescope",
|
"Open Todo in Telescope",
|
||||||
},
|
},
|
||||||
|
u = {
|
||||||
|
"<cmd>UrlView<cr>",
|
||||||
|
"Display and open URLs in current buffer",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
n = {
|
n = {
|
||||||
"Terminal",
|
"Terminal",
|
||||||
|
|
Loading…
Add table
Reference in a new issue