Improve Git config, add lynx, add F# Vim config (#24)

This commit is contained in:
Patrick Stevens
2023-10-04 15:04:44 +01:00
committed by GitHub
parent 166ef06a35
commit 142e7f2244
5 changed files with 69 additions and 48 deletions

View File

@@ -72,7 +72,11 @@
co = "checkout";
st = "status";
};
delta = {enable = true;};
extraConfig = {
core = {
autocrlf = "input";
};
rerere = {
enabled = true;
};
@@ -104,6 +108,9 @@
diff = {
colorMoved = "default";
};
"protocol.file" = {
allow = "always";
};
};
};
@@ -133,6 +140,8 @@
programs.neovim.plugins = with nixpkgs.vimPlugins; [
molokai
tagbar
fzf-vim
Ionide-vim
{
plugin = rust-vim;
config = "let g:rustfmt_autosave = 1";
@@ -201,6 +210,11 @@
nixpkgs.poetry
nixpkgs.woodpecker-agent
nixpkgs.alacritty
nixpkgs.lynx
nixpkgs.alejandra
nixpkgs.ffmpeg
nixpkgs.bat
nixpkgs.pandoc
];
home.file.".ideavimrc".source = ./ideavimrc;