mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
Use gx.nvim for browsing in Browser
This commit is contained in:
parent
d90273df8e
commit
6e60475f3f
@ -223,7 +223,12 @@ local plugin_specs = {
|
|||||||
-- For Windows and Mac, we can open an URL in the browser. For Linux, it may
|
-- For Windows and Mac, we can open an URL in the browser. For Linux, it may
|
||||||
-- not be possible since we maybe in a server which disables GUI.
|
-- not be possible since we maybe in a server which disables GUI.
|
||||||
{
|
{
|
||||||
"tyru/open-browser.vim",
|
"chrishrb/gx.nvim",
|
||||||
|
keys = { { "gx", "<cmd>Browse<cr>", mode = { "n", "x" } } },
|
||||||
|
cmd = { "Browse" },
|
||||||
|
init = function()
|
||||||
|
vim.g.netrw_nogx = 1 -- disable netrw gx
|
||||||
|
end,
|
||||||
enabled = function()
|
enabled = function()
|
||||||
if vim.g.is_win or vim.g.is_mac then
|
if vim.g.is_win or vim.g.is_mac then
|
||||||
return true
|
return true
|
||||||
@ -231,7 +236,9 @@ local plugin_specs = {
|
|||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
event = "VeryLazy",
|
dependencies = { "nvim-lua/plenary.nvim" },
|
||||||
|
config = true, -- default settings
|
||||||
|
submodules = false, -- not needed, submodules are required only for tests
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Only install these plugins if ctags are installed on the system
|
-- Only install these plugins if ctags are installed on the system
|
||||||
|
|||||||
@ -113,17 +113,6 @@ let g:Lf_PreviewResult = {
|
|||||||
\ 'Gtags': 0
|
\ 'Gtags': 0
|
||||||
\}
|
\}
|
||||||
|
|
||||||
""""""""""""""""""""""""""""open-browser.vim settings"""""""""""""""""""
|
|
||||||
if g:is_win || g:is_mac
|
|
||||||
" Disable netrw's gx mapping.
|
|
||||||
let g:netrw_nogx = 1
|
|
||||||
|
|
||||||
" Use another mapping for the open URL method
|
|
||||||
nmap <leader>ob <Plug>(openbrowser-smart-search)
|
|
||||||
xmap <leader>ob <Plug>(openbrowser-smart-search)
|
|
||||||
nmap ob <cmd>echoerr "Use <leader>ob instead!"<CR>
|
|
||||||
endif
|
|
||||||
|
|
||||||
""""""""""""""""""""""""""" vista settings """"""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""" vista settings """"""""""""""""""""""""""""""""""
|
||||||
let g:vista#renderer#icons = {
|
let g:vista#renderer#icons = {
|
||||||
\ 'member': '',
|
\ 'member': '',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user