From a23d04754863d323f5d132db71e7b1ead026b522 Mon Sep 17 00:00:00 2001 From: Tine Date: Sat, 10 Feb 2024 14:34:27 +0100 Subject: [PATCH] feat: tools --- bat/config | 2 +- nix/home.nix | 8 ++++++++ nvim/lua/code_helpers.lua | 2 ++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/bat/config b/bat/config index db721e2..e6d5f50 100644 --- a/bat/config +++ b/bat/config @@ -1,2 +1,2 @@ --italic-text='always' ---theme=OneHalfDark +--theme=OneHalfLight diff --git a/nix/home.nix b/nix/home.nix index 06be305..406d3cf 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -35,6 +35,10 @@ jq yq http-prompt + watchexec + devbox + nodePackages.prettier + direnv # Docker docker-compose @@ -131,6 +135,10 @@ vimAlias = true; }; + programs.direnv = { + enable = true; + }; + programs.zsh = { enable = true; history = { diff --git a/nvim/lua/code_helpers.lua b/nvim/lua/code_helpers.lua index 1f51f53..4a26d53 100644 --- a/nvim/lua/code_helpers.lua +++ b/nvim/lua/code_helpers.lua @@ -9,6 +9,8 @@ require("copilot").setup({ go = true, yaml = true, python = true, + css = true, + tmpl = true, }, }) require("copilot_cmp").setup()