Neovim Configuration Guide
Getting Started with Neovim Configuration
Configuring Neovim allows you to tailor it to your needs and preferences.
To start configuring Neovim, you'll need to create or edit your Neovim configuration file.
Example Neovim Configuration
-- init.lua
-- Enable line numbers
vim.opt.number = true
-- Enable syntax highlighting
vim.cmd [[syntax enable]]
-- Configure Neovim's LSP client
require('lspconfig').pyright.setup{}