To use with other dotfiles, see dotfiles.
To configure Neovim only,
git clone https://github.com/thezbm/nvim-config.git ~/.config/nvim
Write extra custom configs to ~/.nvim-custom.lua
, for example:
return {
treesitter_languages = {
"go",
"python",
},
lsp_servers = {
ensure_installed = {
"gopls",
"pyright",
},
enabled = {
"gopls",
"pyright",
"ocamllsp",
}
},
colorscheme = "catppuccin",
}