aboutsummaryrefslogtreecommitdiffstats
path: root/home/nvim/options.lua
diff options
context:
space:
mode:
Diffstat (limited to 'home/nvim/options.lua')
-rw-r--r--home/nvim/options.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/home/nvim/options.lua b/home/nvim/options.lua
index 109c9b5..4795bac 100644
--- a/home/nvim/options.lua
+++ b/home/nvim/options.lua
@@ -1,5 +1,5 @@
vim.schedule(function()
- vim.opt.clipboard = "unnamedplus"
+ vim.opt.clipboard = "unnamedplus"
end)
vim.g.have_nerd_fonts = true
@@ -7,15 +7,15 @@ vim.g.have_nerd_fonts = true
vim.o.fileencoding = "utf-8"
vim.o.mouse = "a" -- turn on mouse interaction
vim.o.shell = "nushell"
-vim.o.signcolumn = true
+vim.o.signcolumn = "yes"
vim.o.termguicolors = true -- Enable GUI colors for the terminal to get truecolor
vim.opt.conceallevel = 0
vim.opt.title = true -- set the title of window to the value of the titlestring
vim.opt.titlestring = "%<%F%=%l/%L - nvim" -- what the title of the window will be set to
vim.o.guicursor = table.concat({
- "n-v-c:block-Cursor/lCursor-blinkwait1000-blinkon100-blinkoff100",
- "i-ci:ver25-Cursor/lCursor-blinkwait1000-blinkon100-blinkoff100",
- "r:hor50-Cursor/lCursor-blinkwait100-blinkon100-blinkoff100",
+ "n-v-c:block-Cursor/lCursor-blinkwait1000-blinkon100-blinkoff100",
+ "i-ci:ver25-Cursor/lCursor-blinkwait1000-blinkon100-blinkoff100",
+ "r:hor50-Cursor/lCursor-blinkwait100-blinkon100-blinkoff100",
}, ",")
vim.o.autoindent = true