A tailored development environment based on @folke's LazyVim
My setup depends on Wezterm. You can clone mine from my configs

- Neovim >= 0.11.4
gitrgrgfdfdlazygitlazygit- Treesitter CLI treesitter
- Terminal emulator like Ghostty, kitty, wezterm or alacritty. Screenshots are made on Mac with Wezterm as the emulator
- IDE experience, out of the box
- Debug Python, Go,Rust, and JavaScript out of the box.
- Integrated tests for popular languages/frameworks (powered by Neotest)
- Floating, persistent terminal
- Editor context awareness and more powered by Treesitter.
- Native vim spellcheck capabilities
- LSP-sensitive completion context (import paths)
- A ton of themes
- Install neovim
- Clone this repo
git clone https://github.com/sageil/nvim ~/.config/nvim - Start nvim from your terminal emulator
- Open
lua/plugins/colorscheme.lua - Set the true transparency properties to false and remove the styles table:
return {
{
"folke/tokyonight.nvim",
opts = {
transparent = true,
styles = {
sidebars = "transparent",
floats = "transparent",
},
},
},
}