Added nvim config(wip)

This commit is contained in:
hellisabove
2023-01-25 20:25:13 +02:00
commit e4a238fa00
6 changed files with 124 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
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')