recent changes

This commit is contained in:
berkenar1 2026-07-11 07:01:01 +03:00
parent 78ad9fe4b2
commit fcdb4c03f9
4 changed files with 8 additions and 0 deletions

0
check-freebsd.sh Normal file → Executable file
View File

View File

@ -158,6 +158,9 @@ vim.o.inccommand = 'split'
-- Show which line your cursor is on -- Show which line your cursor is on
vim.o.cursorline = true vim.o.cursorline = true
-- Enable true color support
vim.opt.termguicolors = true
-- Minimal number of screen lines to keep above and below the cursor. -- Minimal number of screen lines to keep above and below the cursor.
vim.o.scrolloff = 10 vim.o.scrolloff = 10
@ -166,6 +169,11 @@ vim.o.scrolloff = 10
-- See `:help 'confirm'` -- See `:help 'confirm'`
vim.o.confirm = true vim.o.confirm = true
vim.opt.tabstop = 4 -- Number of spaces a <Tab> in the file counts for
vim.opt.softtabstop = 4 -- Number of spaces a <Tab> 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 ]] -- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()` -- See `:help vim.keymap.set()`

0
install-freebsd.sh Normal file → Executable file
View File

0
uninstall-freebsd.sh Normal file → Executable file
View File