dotfiles/common/.config/nvim/lua/appearance.lua.org
2024-10-01 17:42:59 -05:00

382 B

Neovim Appearance Settings

Use line numbers.

  vim.opt.number = true

Turn on syntax highlighting.

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