Merge pull request 'fix-vim-stuff' (#10) from fix-vim-stuff into main

Reviewed-on: #10
This commit is contained in:
Charlotte 🦝 Delenk 2023-04-15 09:43:46 +00:00
commit 54698b9c04
Signed by: gitea-bot
GPG key ID: C9974EDF9932B558
2 changed files with 8 additions and 3 deletions

View file

@ -13,8 +13,8 @@ in {
];
systemd.user.tmpfiles.rules = [
"d %h/.cache/nvim/undo-files 0700 %u %g mM:1w -"
"d %h/.cache/nvim/swap-files 0700 %u %g mM:1w -"
"d %h/.cache/nvim/backup-files 0700 %u %g mM:1w -"
"d %h/.cache/nvim/undo-files 0700 - - mM:1w -"
"d %h/.cache/nvim/swap-files 0700 - - mM:1w -"
"d %h/.cache/nvim/backup-files 0700 - - mM:1w -"
];
}

View file

@ -11,6 +11,11 @@
if config.isDesktop
then ''
silent call firenvim#install(0)
if vim.g.started_by_firenvim then
vim.o.showtabline = 0
require("lualine").hide()
end
''
else "";
vim.opt.guifont = "Fira_Code_Mono_Nerd_Font_Mono:h9";
}