feat: allow line wrapping for directional motions in configurations

This commit is contained in:
2024-11-23 14:18:53 -05:00
parent 8c79ec4149
commit 7e7afb35a8
+4
View File
@@ -29,9 +29,13 @@ require('data.keys').cmd_mode()
-- ━━━━━━━━━━━━━━━━━━━━━━━━ Additional Overrides ━━━━━━━━━━━━━━━━━━━━━
-- Disable NeoMiniMap in Termux
if vim.g.is_termux then
if require('data.func').is_installed('neominimap') then
-- Disable NeoMiniMap
vim.cmd('Neominimap off')
end
end
-- Allow directional motions to wrap to next line
-- vim.cmd('set whichwrap+=h,l')