Pimp my vim config

This commit is contained in:
Dobos Ádám
2023-01-04 18:55:38 +01:00
parent 4162551645
commit 3acdbefa0d
5 changed files with 49 additions and 3 deletions

View File

@@ -33,4 +33,10 @@ return require('packer').startup(function(use)
-- Statusline
use 'nvim-lualine/lualine.nvim'
-- Undotree
use 'mbbill/undotree'
-- Git
use 'tpope/vim-fugitive'
end)

View File

@@ -27,3 +27,8 @@ vim.opt.cursorline = true
vim.opt.mouse = ""
vim.g.mapleader = " "
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
vim.opt.undofile = true
vim.scrolloff = 8