diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-08 16:03:05 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-08 16:03:05 -0500 |
commit | 545dfbb53f2bb6d7669ca7bfd1f4775a9150b530 (patch) | |
tree | 226c23c41398b5bc1ba070ed38925b7d718382d6 /config/nvim/lua/appearance.org | |
parent | 1116e6b76eb5921698f11df04631df515b74cfb3 (diff) |
update configs, remove index files
Diffstat (limited to 'config/nvim/lua/appearance.org')
-rw-r--r-- | config/nvim/lua/appearance.org | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/nvim/lua/appearance.org b/config/nvim/lua/appearance.org index 946d420..274f438 100644 --- a/config/nvim/lua/appearance.org +++ b/config/nvim/lua/appearance.org @@ -4,12 +4,12 @@ Use line numbers. vim.opt.number = true #+end_src -Set colour scheme to the Ayu light theme. +Turn on syntax highlighting. #+begin_src lua :tangle ~/.config/nvim/lua/appearance.lua :mkdirp yes vim.cmd([[ set termguicolors - let ayucolor="light" syntax on - colorscheme ayu + colorscheme default + set background=light ]]) #+end_src |