Added toggleterm and edgy

Edgy makes for a better sidebar and toggleterm make getting a shell
really easy
This commit is contained in:
Gene Liverman 2024-01-09 17:26:02 -05:00
parent d43eb64a46
commit 376bec3e00
4 changed files with 79 additions and 4 deletions

View file

@ -20,3 +20,12 @@ vim.keymap.set("n", "<leader>h", ":nohlsearch<CR>")
vim.wo.relativenumber = true
vim.o.termguicolors = true
-- Tips from https://github.com/folke/edgy.nvim
-- views can only be fully collapsed with the global statusline
vim.opt.laststatus = 3
-- Default splitting will cause your main splits to jump when opening an edgebar.
-- To prevent this, set `splitkeep` to either `screen` or `topline`.
vim.opt.splitkeep = "screen"