fix(nvim): minor fixes

This commit is contained in:
winston 2022-12-22 04:55:44 +01:00
parent 431ccf6a2c
commit 9922b87da3
Signed by: winston
GPG key ID: 3786770EDBC2B481
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,8 @@
vim.g.catppuccin_flavour = "mocha"
local present, catppuccin = pcall(require, "catppuccin")
if not present then return end
require("catppuccin").setup({
catppuccin.setup({
dim_inactive = {
enable = true,
shade = "dark",

View file

@ -16,7 +16,7 @@ local blacklist = {
}
local function get_chezmoi_output()
local sp, err = io.popen("chemoi managed -i files -pa")
local sp, err = io.popen("chezmoi managed -i files -pa")
if err then
return nil
end