I would start with lazyvim. Start completely fresh, then port over configurations and plugins into the ~/.config/nvim
folder
To manage dotfiles I would recommend a tool called chezmoi. It's got a terrible name, but of all the different approaches I've used over the years, it's been the absolute best.
I am a bit of a keyboard nerd. The bare minimum I would recommend is a hyper key. There are a lot of different ways to achieve the functionality, QMK/ZMK, Raycast and the earliest being karabiner elements. For your laptop, you'll either use Raycast, or karabiner.
Cranking up key repeat and down delay. Once you use a computer with a fast key repeat, everything else feels like a snails pace.
I highly recommend using https://marketplace.cursorapi.com/items?itemName=asvetliakov.vscode-neovim. This is different than a vim emulator in that vscode/cursor will run a separate neovim instance and embed it. The advantage of this is that you can re-use configurations from your neovim configs from above in ~/.config/neovim
directly from vscode. This will keep you productive as you'll still have everything be familiar and easy to access (find and replace, refactoring, some other plugins for vscode, etc), but you'll also be able to use full blown neovim under the covers.
return {
{
"folke/tokyonight.nvim",
-- Here's an example of disabling a plugin in lazyvim when running in vscode
cond = not vim.g.vscode,
opts = {
style = "night",
dim_inactive = true,
on_highlights = function(hl, c)
-- Make borders slightly more legible VertSplit didn't seem to do anything
hl.WinSeparator = {
fg = c.cyan,
}
end,
},
},
}