diff options
| author | Petri Hienonen <petri.hienonen@gmail.com> | 2026-01-12 10:33:52 +0200 |
|---|---|---|
| committer | Petri Hienonen <petri.hienonen@gmail.com> | 2026-01-12 10:33:52 +0200 |
| commit | 515b747a4273030e8bd145a6eac770c4de20f69c (patch) | |
| tree | f399fcbc55fb4a93abb099f9455e3b76e1fd4a77 /home/nvim/options.lua | |
| parent | 9091ec72fe5ed12ae56a46f8580e0053d4b525fb (diff) | |
| download | nixos-515b747a4273030e8bd145a6eac770c4de20f69c.tar.zst | |
Use tabs to indent nvim configurations
Diffstat (limited to 'home/nvim/options.lua')
| -rw-r--r-- | home/nvim/options.lua | 10 |
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 |
