Cleaned base and added fish config

This commit is contained in:
hellisabove
2025-02-01 21:24:10 +02:00
parent aa920cc3b4
commit 3197b6a33c
15 changed files with 474 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
local opt = vim.opt -- for conciseness
-- line numbers
opt.number = true
opt.relativenumber = true
-- tabs & indentation
opt.tabstop = 4
opt.shiftwidth = 4
opt.expandtab = true
opt.autoindent = true
-- line wrapping
opt.wrap = false
-- search settings
opt.ignorecase = true
opt.smartcase = true
-- cursor line
opt.cursorline = true
-- appearance
opt.termguicolors = true
opt.background = "dark"
opt.signcolumn = "yes"
-- backspace
opt.backspace = "indent,eol,start"
-- split windows
opt.splitright = true
opt.splitbelow = true
opt.iskeyword:append("-")
require('plugins')
require('p-tree')
require('colorscheme')
require('keymaps')
require('bar')
require('teleop')
require('nvimcmp')
require('gitsign')