Thu Jun 20 10:27:29 AM CEST 2024
This commit is contained in:
parent
24850d7dc2
commit
9504fc441a
|
@ -44,6 +44,7 @@ vim.opt.conceallevel = 2
|
|||
vim.opt.foldmethod = "expr"
|
||||
vim.opt.foldlevel = 0
|
||||
vim.opt.foldexpr = "getline(v:lnum)=~'^X-ExtEditorR'?1:0"
|
||||
vim.opt.wrap = false
|
||||
|
||||
-- Vimtex
|
||||
vim.g.tex_flavor = 'latex'
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ inputs, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ../zsh ../git ../nvim ../email ../lf ../tmux ];
|
||||
imports = [ ../zsh ../git ../nvim ../email ../lf ../tmux ../yazi ];
|
||||
|
||||
home.stateVersion = "24.11";
|
||||
targets.genericLinux.enable = true;
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
{ inputs, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.yazi = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
flavors = {
|
||||
|
||||
};
|
||||
};
|
||||
}
|
|
@ -32,4 +32,5 @@
|
|||
}];
|
||||
};
|
||||
};
|
||||
programs.gnupg.agent.enable = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue