summary refs log tree commit diff stats
path: root/user/settings
diff options
context:
space:
mode:
authorAlan Pearce2025-02-19 17:01:37 +0100
committerAlan Pearce2025-02-19 17:01:37 +0100
commit92de86bbdb47c5191de97ec6dbb89aab91abc514 (patch)
tree5b9b27a65d2f0381d16c19acda2cbf43197ffbc6 /user/settings
parent1cf7931c400f5349849ad89c04d20f2a87de08de (diff)
downloadnixfiles-92de86bbdb47c5191de97ec6dbb89aab91abc514.tar.lz
nixfiles-92de86bbdb47c5191de97ec6dbb89aab91abc514.tar.zst
nixfiles-92de86bbdb47c5191de97ec6dbb89aab91abc514.zip
dev/v: initial configuration
Diffstat (limited to 'user/settings')
-rw-r--r--user/settings/development/vlang.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/user/settings/development/vlang.nix b/user/settings/development/vlang.nix
new file mode 100644
index 00000000..6d31634d
--- /dev/null
+++ b/user/settings/development/vlang.nix
@@ -0,0 +1,10 @@
+{ pkgs
+, ...
+}: {
+  home.packages = with pkgs; [
+    vlang
+  ];
+  programs.emacs.extraPackages = epkgs: (with epkgs; [
+    v-mode
+  ]);
+}