my edit so far

This commit is contained in:
Sepehr Aghajani 2025-01-22 20:17:14 +03:30
parent 9b052ab040
commit 267ca34956
2 changed files with 15 additions and 1 deletions

View file

@ -156,6 +156,16 @@ vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 10
-- my settings
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.nu = true
vim.opt.relativenumber = true
vim.opt.expandtab = true
vim.opt.smartindent = true
vim.opt.termguicolors = true
-- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()`