Browse Source
refact(modules): change `nvim-mapper` path for searching the mappings
my-config
NTBBloodbath
3 years ago
No known key found for this signature in database
GPG Key ID: 18D6730BC846AAC5
1 changed files with
2 additions and
1 deletions
-
lua/doom/modules/init.lua
|
|
@ -231,11 +231,12 @@ packer.startup(function(use) |
|
|
|
use({ |
|
|
|
"lazytanuki/nvim-mapper", |
|
|
|
config = function() |
|
|
|
local doom_root, sep = require("doom.utils").doom_root, require("doom.core.system").sep |
|
|
|
require("nvim-mapper").setup({ |
|
|
|
-- do not assign the default keymap (<leader>MM) |
|
|
|
no_map = false, |
|
|
|
-- default config search path is ~/.config/nvim/lua |
|
|
|
search_path = os.getenv("HOME") .. "/.config/doom-nvim/lua", |
|
|
|
search_path = string.format("%s%slua", doom_root, sep), |
|
|
|
}) |
|
|
|
end, |
|
|
|
module = "nvim-mapper", |
|
|
|