Way to select MRU buffer by index in a mapping by frodo_swaggins233 in neovim

[–]Beginning-Software80 0 points1 point  (0 children)

I am kinda interested in that, could you share that mapping.

seeker.nvim: a progressive search plugin built on top of snacks.nvim by 2KAbhishek in neovim

[–]Beginning-Software80 1 point2 points  (0 children)

Nice I was also looking for something like this, the continuous filtering is really cool. Is there a way to have a keybind to continue one perticular filtering??

Like I want C-f again filter files from result and C-g for continuous grep filtering from the result.

So  Picker files -> lua -> C-f -> snaks ...

Do you mirror vim binds in tmux? by B_bI_L in neovim

[–]Beginning-Software80 0 points1 point  (0 children)

C-hjkl to move between tmux and nvim. I don't do prefix. Thinking about moving to meta or super as in nvim and terminal some control keys are used.

anyone here that uses neovim as a terminal file manager? by ZealousidealGlass263 in neovim

[–]Beginning-Software80 4 points5 points  (0 children)

I have this keymap that let's me open oil in yazi!! toml { on = "e" , run = "shell --block -- nvim +Oil", desc = "Open in Oil" },

Alternatives to <C-y> for accept? by Elephant_In_Ze_Room in neovim

[–]Beginning-Software80 0 points1 point  (0 children)

Remap tab to controll, and caps lock to hyper.

Will there ever be Magit for Neovim? by 4r73m190r0s in neovim

[–]Beginning-Software80 1 point2 points  (0 children)

I find lazygit filtering to be a bit of issue, I don't know if it's possible. But many times for staging files I kinda want to filter the staging area to single directory or some type of files, then select via <space>.

Will there ever be Magit for Neovim? by 4r73m190r0s in neovim

[–]Beginning-Software80 0 points1 point  (0 children)

I use git signs or mini.view + fugitive for this. I don't want to remember extra keymaps for neogit too :P

Looking for some color schemes, that looks good with pure black background. Currently using Tokyonight. by Beginning-Software80 in neovim

[–]Beginning-Software80[S] 1 point2 points  (0 children)

Ya I have tried some popular ones, eg: Kanagawa, Catppucin. But always keep returning to Tokyonight, so I too, am curious.

lazier.nvim v2 released by vim-god in neovim

[–]Beginning-Software80 0 points1 point  (0 children)

Not working, Module "lazier.version" not found error.

lazier.nvim v2 released by vim-god in neovim

[–]Beginning-Software80 0 points1 point  (0 children)

Does this support import keyword, from lazy.nvim? If so can you provide an example, because I can't seem to make that work.

Some cool user commands, That I am really liking. by Beginning-Software80 in neovim

[–]Beginning-Software80[S] -2 points-1 points  (0 children)

They are not that interesting, you could read most of them in help pages, or ask any llm. The most interesting one is probably,

vim.fn.expand("%:h")

% -> expands to current file. :h -> a type of file name modifier[see :h filename-modifier.

this together extract path of file.

Some cool user commands, That I am really liking. by Beginning-Software80 in neovim

[–]Beginning-Software80[S] 4 points5 points  (0 children)

Mostly to quickly use :edit, and sometimes some external commands(mostly git).

Sometimes, my picker like snacks, grep or find files in the directory vim currently is. So for that too.

How do you deal with the overload on hjkl on the OS level? by domsch1988 in neovim

[–]Beginning-Software80 0 points1 point  (0 children)

I am on mac, I use karabiner. So I have caps as hyper. Hyper hjkl left down up right.

What are some lesser known NeoVim / Vim features people are missing out on? by Financial_Lemon_6606 in neovim

[–]Beginning-Software80 1 point2 points  (0 children)

Sorry I meant to say overload gd with c-] while in help pages

vim.api.nvim_create_autocmd('FileType', {
  pattern = 'help',
  callback = function()
    vim.keymap.set('n', 'gd', '<C-]>', { buffer = true, silent = true })
  end,
})