summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-08-01 18:12:55 +0200
committerLinnnus <[email protected]>2024-08-01 18:12:55 +0200
commit472d7eda18132993222299e246471d6792d38ddc (patch)
tree2543035beb253c20343c92ef42224ad1b1500017 /home
parentaf0feaa1c5216c8fa7a7b38ff4eada6789914bce (diff)
muhammed: Add Gleam
This patch sets up a Gleam development environment on Muhammed. I also took this opportunity to move a whole bunch of development-related filetype plugins to Muhammed, reducing closure size on Ahmed.
Diffstat (limited to 'home')
-rw-r--r--home/neovim/default.nix1
-rw-r--r--home/neovim/filetype.nix13
2 files changed, 0 insertions, 14 deletions
diff --git a/home/neovim/default.nix b/home/neovim/default.nix
index 56f6171..f5ace73 100644
--- a/home/neovim/default.nix
+++ b/home/neovim/default.nix
@@ -1,7 +1,6 @@
# This file contains the HM configuration options for Neovim.
{...}: {
imports = [
- ./filetype.nix
./completion.nix
./editing-plugins.nix
];
diff --git a/home/neovim/filetype.nix b/home/neovim/filetype.nix
deleted file mode 100644
index cb47420..0000000
--- a/home/neovim/filetype.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-# This module configures various syntax/filetype plugins for Neovim.
-{pkgs, ...}: {
- programs.neovim.plugins = with pkgs;
- with vimPlugins; [
- # Filetype plugins
- nim-vim
- vim-nix
- vim-noweb
- vim-janet
- vim-crystal
- vim-svelte
- ];
-}