Post

Neovim Config 2024

https://www.youtube.com/live/KGJV0n70Mxs?si=g01qBK9jRo8UClz2

Sample Loading Plugin Config

1
2
3
4
5
6
7
8
9
10
11
12
13
-- load plugin
local M = {
  "LunarVim/breadcrumbs.nvim",
}

-- config plugin
function M.config()
  require("breadcrumbs").setup()
end

return M

gl to see the error or details of the message provided by LSP. hit gl again to go into the error. Now you can hit yy and yank the error message to clipboard. Paste it into chatgpt for help.

gd will take you to the required or spec file

Super tab

tab key while writing code you can hit tab to go to new line

Inspect

Inspec will tell you where formatters are comming fr

:Inspect

Hints

Toggle Code Hints

space for whichkey l for lsp h for hints

1
space bb

Harpoon

shift m to mark the file tab to scroll through marks

Smooth scroll

control k scroll up control j scroll down

This post is licensed under CC BY 4.0 by the author.

Comments powered by Disqus.