rewrite configuration, migrate to lazy.nvim

This commit is contained in:
♥ Minnie ♥ 2023-10-10 19:04:12 +08:00
parent 618cd6a9a4
commit ac44add81c
11 changed files with 380 additions and 342 deletions

View file

@ -0,0 +1,17 @@
-- Keybinds
vim.g.mapleader = ' '
-- General
vim.opt.number = true
vim.opt.showmode = false
vim.opt.swapfile = false
vim.opt.clipboard = 'unnamedplus'
-- Tabs & spaces
vim.opt.tabstop = 2
vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2
vim.opt.expandtab = true
vim.opt.autoindent = true
vim.opt.copyindent = true