While in Insert mode, you can hit
Quick example where I type inside the quote and enter Normal mode `
#vim #neovim
Article:
pawelgrzybek.com/nvim-increme...
PR:
github.com/neovim/neovi...
#neovim #vim
Article:
pawelgrzybek.com/nvim-increme...
PR:
github.com/neovim/neovi...
#neovim #vim
#macos
#macos
#time
#time
When you are in command-line mode or inside the search input, you can hit the `
#neovim
When you are in command-line mode or inside the search input, you can hit the `
#neovim
Jumping up and down using
github.com/karb94/neosc...
```
{
"karb94/neoscroll.nvim",
opts = {
duration_multiplier = 0.1,
}
}
```
#neovim
Jumping up and down using
github.com/karb94/neosc...
```
{
"karb94/neoscroll.nvim",
opts = {
duration_multiplier = 0.1,
}
}
```
#neovim
Code folding in Neovim doesn’t need to be hard. A few lines of config and a `za` keymap for fold toggling is a good starting point.
```
vim.opt.foldmethod = "expr"
vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
vim.opt.foldenable = false
vim.opt.foldlevel = 99
```
#neovim
Code folding in Neovim doesn’t need to be hard. A few lines of config and a `za` keymap for fold toggling is a good starting point.
```
vim.opt.foldmethod = "expr"
vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
vim.opt.foldenable = false
vim.opt.foldlevel = 99
```
#neovim