dotfiles/config/nvim/lua/appearance.org
2024-08-08 16:03:05 -05:00

380 B

Neovim Appearance Settings

Use line numbers.

  vim.opt.number = true

Turn on syntax highlighting.

  vim.cmd([[
      set termguicolors
      syntax on
      colorscheme default
      set background=light
  ]])