diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-09 20:48:10 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-09 20:48:10 -0500 |
commit | 40f02bc8088ca93224bf65f083c4ab3b17eaf435 (patch) | |
tree | f5c4d0bd619a4f7547f318a86ecfdd05e88ca814 /gentoo/.config/nvim/lua/appearance.org | |
parent | d97f4feb2c17835d31a4dff5f1109d50c4111943 (diff) |
move gentoo into subdirectory
Diffstat (limited to 'gentoo/.config/nvim/lua/appearance.org')
-rw-r--r-- | gentoo/.config/nvim/lua/appearance.org | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gentoo/.config/nvim/lua/appearance.org b/gentoo/.config/nvim/lua/appearance.org new file mode 100644 index 0000000..274f438 --- /dev/null +++ b/gentoo/.config/nvim/lua/appearance.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 termguicolors + syntax on + colorscheme default + set background=light + ]]) +#+end_src |