dotfiles/config/nvim/lua/appearance.org
2024-08-07 22:34:10 -05:00

389 B

Neovim Appearance Settings

Use line numbers.

  vim.opt.number = true

Set colour scheme to the Ayu light theme.

  vim.cmd([[
      set termguicolors
      let ayucolor="light"
      syntax on
      colorscheme ayu
  ]])