- Open nvim with
-V
option.nvim -V1
:verbose
to see where a mapping/command/autocommand was defined.:verbose map m
Use the onlyPlugins
option.
- plugin manager will be not disabled by
onlyPlugins
.
require('one').setup {
-- @param [opts.onlyPlugins] {string[]}
-- It's useful for debug. Defaults to nil.
-- If set empty table, all builtin and user-defined plugins are disabled.
-- If set non-empty table, only these plugins are not disabled.
onlyPlugins = {},
}
require('one').setup {
-- @param [opts.onlyPlugins] {string[]}
-- It's useful for debug. Defaults to nil.
-- If set empty table, all builtin and user-defined plugins are disabled.
-- If set non-empty table, only these plugins are not disabled.
onlyPlugins = { 'tiagovla/scope.nvim', 'akinsho/bufferline.nvim' },
}
nvim-treesitter has many Breaking Changes. Read the Notice of Breaking Changes.