1
0

FIX: Restructured nvim plugins. moved the configuration for each plugin through Lazy in seperate files.

This commit is contained in:
2024-03-26 12:51:53 +01:00
parent a1ef89b3c9
commit b844031323
13 changed files with 185 additions and 189 deletions

26
lua/barink/vim.lua Normal file
View File

@@ -0,0 +1,26 @@
-- Set basic vim options
vim.opt.guicursor = ""
vim.opt.nu = true
vim.opt.relativenumber = true
local tab_spacing = 4
vim.opt.tabstop = tab_spacing
vim.opt.softtabstop = tab_spacing
vim.opt.shiftwidth = tab_spacing
vim.opt.expandtab = true
vim.opt.smartindent = true
vim.opt.wrap = false
vim.opt.hlsearch = false
vim.opt.incsearch = true
vim.opt.termguicolors = true
vim.opt.scrolloff = 8
vim.g.netrw_browse_split = 0
vim.g.netrw_winsize = 25