opalmay
opalmay
Fixes the following issues on RTL locales: 1. Headers underline now shows on the right 2. Comment actions now show on the left 3. Make visual editor knowledgeable of RTL...
This was very annoying for me so I made a quick fix. It works but idk if this is the right way to do this.
#1409 #1114 #1214 #1288
This better matches the way search works without the plugin. For some themes they're the same, for others not (e.g. Catppuccin) Could also potentially link the virtual text too to...
The basic idea is mapping `Tab + hjkl` to move the cursor: (mapping for `Tab +h`) ```py mouse(left,8) ``` Which I got working. I want to apply acceleration to this,...
Hi, The current behavior of the toggle function toggles all layouts in a way that is independent of each other. So for example say I have two layouts defined. After...
use this plugin for breadcrumbs https://github.com/Bekaboo/dropbar.nvim `t` triggers the menu selection (change to a different mapping?) I've also set a few reasonable custom keymaps for the menu. Needs deprecation handling.
1. Users can now add keybinds more easily to `lvim.builtin.terminal.terminals` eg: ```lua local terminals = { { keymap = "u", cmd = "sudo dmesg | less", desc = "Show Kernel...
Following #3855 As we are not going to deprecate not using $NVIM_APPNAME, this is still relevant. I removed the `data` override so that it's not breaking. But at least things...
We provide an option to auto open dapui with `lvim.builtin.dap.ui.auto_open`. by default, `dapui.open()` opens all defined layouts. in LunarVim we have two predefined ones. This commit adds config option `lvim.builtin.dap.ui.auto_open_layout_index`...