aboutsummaryrefslogtreecommitdiff
path: root/config/nvim/lua/appearance.org
blob: 6cbf4baf9bf03523a19ad7972e93d0cf14b36864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#+title: Neovim Appearance Settings
Use line numbers.
#+begin_src lua :tangle yes
  vim.opt.number = true
#+end_src

Set colour scheme.
#+begin_src lua :tangle yes
  vim.cmd([[
      set termguicolors
      let ayucolor="light"
      syntax on
      colorscheme ayu
  ]])
#+end_src