7a5dbeae75
feat: use LazyVim everywhere instead of require("lazyvim.util")
2024-03-22 09:15:09 +01:00
d8d380a60e
fix(lazygit): make sure we start lazygit in a valid git root
2024-03-18 11:23:55 +01:00
42a7e79d5a
fix(git): use compatible function for windows and linux ( #2740 )
2024-03-15 18:01:33 +01:00
0ec7a9040b
feat(git): add <leader>gf for lazygit commit history on current file ( #2728 )
...
* Add <leader>gf for lazygit commit history on current file
* Change root dir to git root using git command
* refactor: cleanup
---------
Co-authored-by: Uthman Mohamed <83053931+1239uth@users.noreply.github.com >
Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com >
2024-03-14 00:06:47 +01:00
fa6158a595
feat(keymaps): add function to toggle between light/dark backgrounds ( #2088 )
2024-01-21 19:52:36 +01:00
6853b785d9
fix(lsp): detect if using nvim-0.10 and use new inlay_hint.enable method ( #2007 )
...
* Detect if using nvim 0.10 and use new inlay_hint.enable method
* Add lsp util for inlay-hints and update keymap
* Remove the need to check vim version
* Support older nightly builds
* Move inlay_hint toggle in Util.toggle
---------
Co-authored-by: Gary Murray <gamurray@fanatics.com >
2023-11-30 19:53:40 +01:00
9e1f835223
feat(nvim): extend j/k enhancements to up/down arrows ( #1833 )
2023-10-25 15:48:45 +02:00
1d4fbd3b2e
fix(keymaps): let keymap n and N opens folds ( #1298 )
...
It's strange that mappings to n and N do not open folds like its original behavior, so I append `zv` to manually open folds.
2023-10-17 18:03:34 +02:00
5c4f881158
style(keymaps): no need to check for trouble to set [q, ]q
2023-10-16 07:44:20 +02:00
c3daced11c
feat(ui): add keymap to close other buffers ( #1743 )
...
* feat(ui): add keymap to close other buffers
* refactor
---------
Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com >
2023-10-16 07:35:57 +02:00
be5eea476c
feat(keymaps): added toggle for treesitter highlights
2023-10-16 07:30:06 +02:00
873ff89284
fix(keymaps): no diagnostic keymaps w/o lsp attached ( #1698 )
2023-10-13 16:53:55 +02:00
73acab1675
feat: added NEWS.md and option to automatically show when changed (enabled by default)
2023-10-12 14:38:25 +02:00
a2d604928b
feat(root): customizable root detection and :LazyRoot
command
2023-10-12 11:48:02 +02:00
f1a8f24a36
feat(format): new LazyVim formatter with integrations for lsp/none-ls/conform/eslint/...
2023-10-12 11:48:02 +02:00
c8c929c9fd
perf(util): split lazyvim.util in smaller separate modules
2023-10-12 11:48:02 +02:00
25f3587f3f
refactor(keymaps): move safe keymap.set wrapper to util and add message not to use it in a personal config
2023-10-08 10:28:01 +02:00
1bc78272da
feat(keymaps): added support for lazy's per-mode keymap disabling
2023-10-08 10:15:28 +02:00
3f868aa825
feat(keymaps): added toggle for relative line numbers
2023-10-03 14:56:55 +02:00
9b16770573
fix(format): moved formatting keymap to lua/lazyvim/config/keymaps.lua
2023-10-01 23:31:24 +02:00
9935dc3944
fix: cleanup all Neovim < 0.9.0 code
2023-10-01 14:18:25 +02:00
ec0ddd481c
fix(keymaps): change v
mode to x
mode for save file
( #1262 )
...
While trying to disable `<C-s>` entirely by `vim.keymap.del({ "i", "v","n", "s" }, "<C-s>")`
in my own `keymaps.lua`, I got an error on reopening Neovim `No such mapping`.
After tinkering around a bit, I changed `v` to `x`, since `v` incorporates both
`x` and `s` and the error stopped occuring.
2023-08-29 18:07:56 +02:00
23e2b073e6
fix(keymaps): remove gw keymap
2023-08-29 18:00:54 +02:00
df0818880e
fix(util): fixed line number toggling. Closes #1173
2023-07-20 23:38:43 +02:00
a28acf0ce7
feat(keymaps): added leader-K to run keywordprg
2023-07-18 08:46:52 +02:00
9387ab388e
feat: added leader-L
to show the LazyVim changelog
2023-07-13 08:18:02 +02:00
089606b48d
fix(lsp): upstream inlay_hint rename
2023-06-30 20:44:39 +02:00
e9358d977a
fix(keymaps): remove redundant ':' on lazy keymap ( #977 )
2023-06-25 10:05:07 +02:00
01c7eeebd0
feat: added support for the new builtin inlay hints
...
Enable with:
```lua
{"neovim/nvim-lspconfig", opts = {inlay_hints = {enabled = true}}}
```
2023-06-21 08:01:59 +02:00
ebd002f135
fix(keymaps): disable ctrl-hjkl for lazygit. Fixes #905
2023-06-16 19:06:27 +02:00
d6bb907cf0
fix(keymaps): dont map jk in visual. Use x instead of v. Fixes #912
2023-06-09 16:27:45 +02:00
e049928b8b
fix(keymaps): better j/k for visual mode ( #902 )
2023-06-08 13:48:23 +02:00
1897617c98
fix(keymaps): terminal show/hide
2023-06-06 07:46:32 +02:00
d31772f981
fix(keymaps): added c-_ mapped to c-/ to make it work in some terminals
2023-06-06 00:11:52 +02:00
952a0cfb96
fix(keymaps): remove c-w
mapping
2023-06-05 12:10:55 +02:00
7a36e2989c
feat(keymaps): added <c-/>
in normal/terminal mode to toggle main terminal
2023-06-03 10:54:29 +02:00
49ae2344a1
feat(keymaps): added some useful keymaps for terminals
2023-06-03 10:49:58 +02:00
7c9abd7463
fix(vscode): only remap keybinds when running in vscode
2023-05-24 21:59:37 +02:00
9cfe88c7ba
fix: remove debug notify ( #808 )
2023-05-24 10:34:27 +02:00
5bf45e3139
feat(vscode): better vscode support
2023-05-24 08:45:20 +02:00
06e4ba2fdb
style: Fix comments on autocmds and keymaps loading ( #779 )
2023-05-19 15:06:59 +02:00
a9e9204dae
fix(lazygit): dont use <esc><esc>
for normal more for laygit to prevent delays on <esc>
. Fixes #567
2023-04-16 11:18:44 +02:00
59fa83653f
feat(keymaps): Add previous/next trouble/quickfix item keymap [q
, ]q
( #299 )
2023-02-28 11:31:35 +01:00
70966bbc19
style: desc for gw
2023-02-28 09:59:01 +01:00
8a9265efed
style: add description for "gw" keymap ( #327 )
2023-02-28 09:58:29 +01:00
088914e1dd
feat(trouble): keymaps for trouble quicklist / loclist ( #171 )
...
* use trouble quicklist / loclist if available
* feat: added keymaps for loclist and qf list with trouble
---------
Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com >
2023-02-07 21:50:41 +01:00
2ff213126c
fix(keymaps): move lines with silent and without triggering cmdline. Fixes #184
2023-02-06 08:43:59 +01:00
e5626e9a2d
fix(keymaps): silent by default
2023-02-06 08:43:59 +01:00
2ae2a63265
fix(bufferline): plugin was renamed from nvim-bufferline.lua -> bufferline.nvim. Fixes #128
2023-01-25 08:19:44 +01:00
012dbab586
feat(keymaps): do not create keymaps when a lazy keys handler exists
2023-01-23 08:08:12 +01:00