added keybinds and config

This commit is contained in:
Simon Ziegler
2025-10-02 13:44:26 +02:00
parent d8dba6591e
commit eac8a20744
4 changed files with 18 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
require("config.lazy")
require("config.keybinds")
-- set theme
vim.cmd.colorscheme "catppuccin-frappe"
@@ -6,3 +7,8 @@ vim.cmd.colorscheme "catppuccin-frappe"
-- relative linenumbers
vim.wo.relativenumber = true
vim.wo.number = true
-- tab-width
vim.opt.shiftwidth = 4
vim.opt.tabstop = 4