From 2a1645ae9593114514a7f28fa6d9109d1820375d Mon Sep 17 00:00:00 2001 From: Hsieh Chin Fan Date: Mon, 24 Jun 2024 16:34:51 +0800 Subject: Update --- vim/nvim/lua/options.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 vim/nvim/lua/options.lua (limited to 'vim/nvim/lua/options.lua') diff --git a/vim/nvim/lua/options.lua b/vim/nvim/lua/options.lua new file mode 100644 index 0000000..f9e6e7e --- /dev/null +++ b/vim/nvim/lua/options.lua @@ -0,0 +1,20 @@ +require "nvchad.options" + +-- add yours here! + +local o = vim.o + +-- To enable cursorline! +o.cursorlineopt ='both' + +-- Let cursor be line in insert mode +o.guicursor = "n-v-c-sm:block,i-ci-ve:ver25,r-cr-o:hor20" + +-- Enable break indent +o.breakindent = true + +-- To have a better completion experience +o.completeopt = 'menuone,noselect' + +-- NOTE: You should make sure your terminal supports this +o.termguicolors = true -- cgit v1.2.3-70-g09d2