From 4b71faabb6e96139128a484a536b23964cb1b594 Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Sat, 13 Jan 2024 12:31:08 +0100 Subject: [PATCH] updated the local leader for neorg mode --- .../neovim/files/nvim/lua/settings/lazy/plugins/neorg.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/neorg.lua b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/neorg.lua index d64747b..5710242 100644 --- a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/neorg.lua +++ b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/neorg.lua @@ -7,11 +7,6 @@ return { load = { ["core.defaults"] = {}, ["core.concealer"] = {}, - ["core.keybinds"] = { - config = { - neorg_leader = "o" - } - }, ["core.dirman"] = { config = { workspaces = { @@ -21,5 +16,7 @@ return { }, }, } + + vim.opt.localleader = " o" end, }