Added toggleterm

This commit is contained in:
2026-08-09 10:26:07 +02:00
parent cd2df7edb2
commit 080783899d
2 changed files with 20 additions and 5 deletions
@@ -7,11 +7,12 @@ vim.opt.number = true
vim.opt.relativenumber = true
-- GUI stuff
vim.opt.cursorline = true -- Highlight the current line
vim.opt.colorcolumn = "80,120" -- Show vertical ruler
vim.opt.scrolloff = 8 -- Keep at least 8 lines between the cursor and the borders
vim.opt.wrap = false -- Don't wrap long lines
vim.opt.laststatus = 3 -- Single global status bar
vim.opt.cursorline = true -- Highlight the current line
vim.opt.colorcolumn = "80,120" -- Show vertical ruler
vim.opt.scrolloff = 8 -- Keep at least 8 lines between the cursor and the borders
vim.opt.wrap = false -- Don't wrap long lines
vim.opt.laststatus = 3 -- Single global status bar
vim.opt.fillchars = { eob = ' ' } -- Don't put `~` at the end of buffer
-- Show whitespace characters (tabs, trailing spaces, etc.)
vim.opt.list = true