dotfiles/.config/nvim/lua/vars.lua
Ben Vincent 27e3b132a8 Initial commit for dotfiles
Setting up dotfiles with yadm
2022-08-26 22:09:22 +09:30

10 lines
203 B
Lua

--[[ vars.lua ]]
local g = vim.g
g.t_co = 256
g.background = "dark"
-- Update the packpath
local packer_path = vim.fn.stdpath('config') .. '/site'
vim.o.packpath = vim.o.packpath .. ',' .. packer_path