From fcdb4c03f9656afe45363aaa21a9db342783f0b0 Mon Sep 17 00:00:00 2001 From: berkenar1 <73941606+berkenar1@users.noreply.github.com> Date: Sat, 11 Jul 2026 07:01:01 +0300 Subject: [PATCH] recent changes --- check-freebsd.sh | 0 init.lua | 8 ++++++++ install-freebsd.sh | 0 uninstall-freebsd.sh | 0 4 files changed, 8 insertions(+) mode change 100644 => 100755 check-freebsd.sh mode change 100644 => 100755 install-freebsd.sh mode change 100644 => 100755 uninstall-freebsd.sh diff --git a/check-freebsd.sh b/check-freebsd.sh old mode 100644 new mode 100755 diff --git a/init.lua b/init.lua index 99da6f9f..83fccd9e 100644 --- a/init.lua +++ b/init.lua @@ -158,6 +158,9 @@ vim.o.inccommand = 'split' -- Show which line your cursor is on vim.o.cursorline = true +-- Enable true color support +vim.opt.termguicolors = true + -- Minimal number of screen lines to keep above and below the cursor. vim.o.scrolloff = 10 @@ -166,6 +169,11 @@ vim.o.scrolloff = 10 -- See `:help 'confirm'` vim.o.confirm = true +vim.opt.tabstop = 4 -- Number of spaces a in the file counts for +vim.opt.softtabstop = 4 -- Number of spaces a counts for while editing +vim.opt.shiftwidth = 4 -- Number of spaces to use for each step of (auto)indent +vim.opt.expandtab = true -- Convert tabs to spaces + -- [[ Basic Keymaps ]] -- See `:help vim.keymap.set()` diff --git a/install-freebsd.sh b/install-freebsd.sh old mode 100644 new mode 100755 diff --git a/uninstall-freebsd.sh b/uninstall-freebsd.sh old mode 100644 new mode 100755