Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 1.54 KB

neovim-notes.md

File metadata and controls

27 lines (24 loc) · 1.54 KB

Neovim Notes

Notes on Neovim, which I'm not sure I want to switch to yet

vim.opt.whichwrap:append({
  ["<"] = true,
  [">"] = true,
})
  • Turning off bufferline.nvim in config/plugins/disabled.lua:
return {
  { "akinsho/bufferline.nvim", enabled = false },
}
  • S for Sync in the Lazy.nvim plugin manager does install, clean and update in a single action.
  • The LazyVim extras can be quite useful. Consider editor.dial which lets you increment and decrement strings like December, 2022/02/22, sixth, and Tuesday.
  • Use :lua Snacks.dashboard() to access the dashboard after starting Neovim.
  • gc in normal mode (presumably also in Vim (actually, no, at least not by default)) toggles comments.