From 26694e09e8f5bf2262737312e7ad217118db20de Mon Sep 17 00:00:00 2001 From: joott Date: Wed, 30 Jul 2025 15:53:29 -0400 Subject: switching to yadm --- nvim/lua/options.lua | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 nvim/lua/options.lua (limited to 'nvim/lua/options.lua') diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua deleted file mode 100644 index cd293f4..0000000 --- a/nvim/lua/options.lua +++ /dev/null @@ -1,35 +0,0 @@ -vim.cmd "set undofile" --- vim.opt.isfname:append("@-@") -vim.g.mapleader = ' ' - -local options = { - nu = true, - relativenumber = true, - - tabstop = 4, - softtabstop = 4, - shiftwidth = 4, - expandtab = true, - - smartindent = false, - autoindent = true, - - wrap = true, - - hlsearch = false, - incsearch = true, - - scrolloff = 8, - signcolumn = "no", - cursorline = true, - cursorlineopt = "number", - - ignorecase = true, - smartcase = true, - - showmode = false, -} - -for k, v in pairs(options) do - vim.opt[k] = v -end -- cgit v1.3