dotfiles/home/private_dot_config/astronvim/lua/user/init.lua

14 lines
398 B
Lua
Raw Normal View History

2022-11-11 21:41:26 -06:00
local config = {
colorscheme = "catppuccin",
-- This function is run last and is a good place to configuring
-- augroups/autocommands and custom filetypes also this just pure lua so
-- anything that doesn't fit in the normal config locations above can go here
2022-11-14 11:48:35 -06:00
polish = function()
-- todo: convert to lua
vim.cmd('cnoremap sudow w !sudo tee % >/dev/null')
end,
2022-11-11 21:41:26 -06:00
}
return config