Merge pull request 'fix-vim-stuff' (#10) from fix-vim-stuff into main
Reviewed-on: #10
This commit is contained in:
commit
54698b9c04
2 changed files with 8 additions and 3 deletions
|
@ -13,8 +13,8 @@ in {
|
||||||
];
|
];
|
||||||
|
|
||||||
systemd.user.tmpfiles.rules = [
|
systemd.user.tmpfiles.rules = [
|
||||||
"d %h/.cache/nvim/undo-files 0700 %u %g mM:1w -"
|
"d %h/.cache/nvim/undo-files 0700 - - mM:1w -"
|
||||||
"d %h/.cache/nvim/swap-files 0700 %u %g mM:1w -"
|
"d %h/.cache/nvim/swap-files 0700 - - mM:1w -"
|
||||||
"d %h/.cache/nvim/backup-files 0700 %u %g mM:1w -"
|
"d %h/.cache/nvim/backup-files 0700 - - mM:1w -"
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,11 @@
|
||||||
if config.isDesktop
|
if config.isDesktop
|
||||||
then ''
|
then ''
|
||||||
silent call firenvim#install(0)
|
silent call firenvim#install(0)
|
||||||
|
if vim.g.started_by_firenvim then
|
||||||
|
vim.o.showtabline = 0
|
||||||
|
require("lualine").hide()
|
||||||
|
end
|
||||||
''
|
''
|
||||||
else "";
|
else "";
|
||||||
|
vim.opt.guifont = "Fira_Code_Mono_Nerd_Font_Mono:h9";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue