Initial commit

This commit is contained in:
2023-06-14 20:20:18 +02:00
commit 326088a13d
12 changed files with 459 additions and 0 deletions

27
lua/taken/opts.lua Normal file
View File

@@ -0,0 +1,27 @@
vim.g.mapleader = " "
vim.opt.nu = true
vim.opt.relativenumber = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
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.opt.signcolumn = "yes"
vim.opt.isfname:append("@-@")
vim.opt.updatetime = 50
-- Options for nvim-tree
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1