readd waybar and update nvim config

This commit is contained in:
Tristan 2024-01-06 00:28:00 +00:00
parent 026035fe52
commit 1567efd5ad
2 changed files with 4 additions and 0 deletions

View file

@ -1,6 +1,7 @@
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
vim.o.relativenumber = true
vim.o.number = true
vim.o.signcolumn = 'yes'
vim.o.tabstop = 2
vim.o.shiftwidth = 2
@ -8,6 +9,8 @@ vim.o.expandtab = true
vim.o.smartindent = true
vim.o.hlsearch = false
vim.o.scrolloff = 4
vim.o.undofile = true
vim.o.undodir = "~/.local/share/nvim/undo"
vim.keymap.set("v", "J", ":m '>+1<CR>gv=gv")
vim.keymap.set("v", "K", ":m '<-2<CR>gv=gv")