- Start here: https://lazyvim-ambitious-devs.phillips.codes/
- I needed
$TERM
set totmux-256color
for the<Home>
and<End>
keys to work. - In the LazyVim documentation for writing a colorscheme plugin, nothing is inherently required about the name
colorscheme.lua
. It could be any filename with the.lua
extension. - Refer to LazyVim documentation on writing plugins for how to make the cyberdream.nvim colorscheme transparent in LazyVim. There is no need for any of the code that starts with
require("cyberdream").setup({
. Rather, theopts
key is used withtransparent = true
. - For altering the
whichwrap
option inoptions.lua
, because it's a flag list:
vim.opt.whichwrap:append({
["<"] = true,
[">"] = true,
})
- Turning off
bufferline.nvim
inconfig/plugins/disabled.lua
:
return {
{ "akinsho/bufferline.nvim", enabled = false },
}
S
forSync
in theLazy.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 likeDecember
,2022/02/22
,sixth
, andTuesday
. - 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.