From 7b0ea5cbdaaa5b8392777ad207c74cb27411eab1 Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Tue, 1 Oct 2024 17:42:59 -0500 Subject: the big refactor --- common/.config/nvim/lua/appearance.lua.org | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 common/.config/nvim/lua/appearance.lua.org (limited to 'common/.config/nvim/lua/appearance.lua.org') diff --git a/common/.config/nvim/lua/appearance.lua.org b/common/.config/nvim/lua/appearance.lua.org new file mode 100644 index 0000000..1f1d534 --- /dev/null +++ b/common/.config/nvim/lua/appearance.lua.org @@ -0,0 +1,15 @@ +#+title: Neovim Appearance Settings +Use line numbers. +#+begin_src lua :tangle ~/.config/nvim/lua/appearance.lua :mkdirp yes + vim.opt.number = true +#+end_src + +Turn on syntax highlighting. +#+begin_src lua :tangle ~/.config/nvim/lua/appearance.lua :mkdirp yes + vim.cmd([[ + set notermguicolors + syntax on + colorscheme default + set background=light + ]]) +#+end_src -- cgit v1.2.3