Thu Jun 20 10:27:29 AM CEST 2024

This commit is contained in:
Thomas Avé 2024-06-20 10:27:29 +02:00
parent 24850d7dc2
commit 9504fc441a
4 changed files with 14 additions and 1 deletions

View File

@ -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'

View File

@ -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;

11
home/yazi/default.nix Normal file
View File

@ -0,0 +1,11 @@
{ inputs, config, pkgs, ... }:
{
programs.yazi = {
enable = true;
enableZshIntegration = true;
flavors = {
};
};
}

View File

@ -32,4 +32,5 @@
}];
};
};
programs.gnupg.agent.enable = true;
}