aboutsummaryrefslogtreecommitdiff
path: root/config/nvim/lua/appearance.org
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-08-08 16:03:05 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-08-08 16:03:05 -0500
commit545dfbb53f2bb6d7669ca7bfd1f4775a9150b530 (patch)
tree226c23c41398b5bc1ba070ed38925b7d718382d6 /config/nvim/lua/appearance.org
parent1116e6b76eb5921698f11df04631df515b74cfb3 (diff)
update configs, remove index files
Diffstat (limited to 'config/nvim/lua/appearance.org')
-rw-r--r--config/nvim/lua/appearance.org6
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