feat: vim lsp features

This commit is contained in:
2024-04-24 00:39:05 +00:00
parent d97581efc9
commit c170b79556
3 changed files with 59 additions and 1 deletions

View File

@@ -64,6 +64,7 @@ in
fonts.packages = with pkgs; [
fira-code
fira-code-symbols
powerline-fonts
custom-fonts.custom-fonts
];

View File

@@ -1,5 +1,8 @@
{ pkgs, modulesPath, ... }:
let
custom-fonts = import ../../fonts { inherit pkgs; };
in
{
imports = [
"${modulesPath}/profiles/minimal.nix"
@@ -54,6 +57,14 @@
gnupg
];
fonts.packages = with pkgs; [
fira-code
fira-code-symbols
powerline-fonts
custom-fonts.custom-fonts
];
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "curses";