Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 598 Bytes

README.md

File metadata and controls

32 lines (27 loc) · 598 Bytes

Usage

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",
}