From d2d4e216dc62cf978dbdc752194547b45b642407 Mon Sep 17 00:00:00 2001 From: dlond Date: Sat, 3 May 2025 01:01:26 +1200 Subject: [PATCH] custom options --- lua/custom/options.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lua/custom/options.lua diff --git a/lua/custom/options.lua b/lua/custom/options.lua new file mode 100644 index 00000000..36db2c6d --- /dev/null +++ b/lua/custom/options.lua @@ -0,0 +1,19 @@ +-- Place custom vim options here + +-- Set based on your font installation +vim.g.have_nerd_font = true + +-- Indentation settings +vim.o.expandtab = true +vim.o.smartindent = true +vim.o.tabstop = 4 +vim.o.shiftwidth = 4 + +-- Add any other custom vim.o or vim.g settings from your old config here +-- For example, if you changed defaults for: +-- vim.opt.number = true -- (Already default in kickstart) +-- vim.opt.mouse = 'a' -- (Already default in kickstart) +-- etc... Review the options section of your old init.lua and add any *changed* values here. +-- The kickstart defaults are generally sensible, so you might not need many overrides. + +-- print 'Custom options loaded!' -- Optional: Add print statement for debugging