aboutsummaryrefslogtreecommitdiffhomepage
path: root/.config/nvim/init.lua
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2021-12-04 11:04:56 +0900
committernsfisis <nsfisis@gmail.com>2021-12-04 11:04:56 +0900
commitb8d14f4f60fd6a4aa21fdc3d22a9ccf9dcb4398f (patch)
treeaab38a795f19f1d9912e099809997c5bc83ad64d /.config/nvim/init.lua
parentd257fe2d3a2fa0b899ca47b07378c0d7a8582db6 (diff)
downloaddotfiles-b8d14f4f60fd6a4aa21fdc3d22a9ccf9dcb4398f.tar.gz
dotfiles-b8d14f4f60fd6a4aa21fdc3d22a9ccf9dcb4398f.tar.zst
dotfiles-b8d14f4f60fd6a4aa21fdc3d22a9ccf9dcb4398f.zip
neovim: port colorscheme to Lua
Diffstat (limited to '.config/nvim/init.lua')
-rw-r--r--.config/nvim/init.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua
index 6ec1ff1..135550f 100644
--- a/.config/nvim/init.lua
+++ b/.config/nvim/init.lua
@@ -1150,12 +1150,12 @@ command! -bar -range=%
vim.cmd([[
try
- colorscheme ocean
+ colorscheme ocean
catch
- " Loading colorscheme failed.
- " The color scheme, "desert", is one of the built-in ones. Probably, it
- " will be loaded without any errors.
- colorscheme desert
+ " Loading colorscheme failed.
+ " The color scheme, "desert", is one of the built-in ones. Probably, it
+ " will be loaded without any errors.
+ colorscheme desert
endtry
]])