aboutsummaryrefslogtreecommitdiff
path: root/lua/core/options.lua
diff options
context:
space:
mode:
authorNicholas Hall <root@ngha.ro>2026-04-29 20:42:44 -0500
committerNicholas Hall <root@ngha.ro>2026-04-29 20:42:44 -0500
commitb834788f7dc110e4a4f79b0356f1293d6d129b13 (patch)
treebef6e26d08963096e192292c8d597d7f3301e2ba /lua/core/options.lua
parent7041a218d5cdcb6131697078e4422deb457c6cf0 (diff)
downloadnvim-lazyvim.tar.xz
nvim-lazyvim.zip
Omarchy lazyvimlazyvim
Diffstat (limited to 'lua/core/options.lua')
-rw-r--r--lua/core/options.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/lua/core/options.lua b/lua/core/options.lua
deleted file mode 100644
index de4903f..0000000
--- a/lua/core/options.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-vim.opt.tabstop = 2
-vim.opt.shiftwidth = 2
-vim.opt.shiftround = true -- round indent to sw compatible
-vim.opt.expandtab = true
-
-vim.opt.mouse = 'a'
-vim.opt.clipboard = 'unnamedplus'
--- Case insensitive searching UNLESS /C or capital in search
-vim.opt.ignorecase = true
-vim.opt.smartcase = true
-
--- Better editor UI
-vim.opt.number = true
--- vim.opt.numberwidth = 3
-vim.opt.relativenumber = true
--- vim.opt.signcolumn = 'yes:2'
-vim.opt.signcolumn = 'yes'
-vim.opt.cursorline = false
-vim.opt.listchars = 'trail:·,nbsp:◇,tab:→ ,extends:▸,precedes:◂,eol:⁋'
-vim.diagnostic.config({
- -- virtual_lines = true,
- virtual_text = true,
-})