summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/custom-neovim/config/fnl/init.fnl1
-rw-r--r--pkgs/custom-neovim/config/init.lua11
-rw-r--r--pkgs/custom-neovim/default.nix10
-rw-r--r--pkgs/custom-neovim/design.md20
-rw-r--r--pkgs/custom-neovim/nvim/lua/init.lua1
5 files changed, 2 insertions, 41 deletions
diff --git a/pkgs/custom-neovim/config/fnl/init.fnl b/pkgs/custom-neovim/config/fnl/init.fnl
deleted file mode 100644
index f62b370..0000000
--- a/pkgs/custom-neovim/config/fnl/init.fnl
+++ /dev/null
@@ -1 +0,0 @@
-(vim.cmd.colorscheme evening)
diff --git a/pkgs/custom-neovim/config/init.lua b/pkgs/custom-neovim/config/init.lua
index a857272..8b13789 100644
--- a/pkgs/custom-neovim/config/init.lua
+++ b/pkgs/custom-neovim/config/init.lua
@@ -1,12 +1 @@
-fennel = require "fennel"
-configdir = debug.getinfo(1).source:sub(2, string.len('/init.lua'))
-do
- local fnldir = (configdir .. "/fnl")
- for _, dir in ipairs({"/?.fnl", "/?/init.fnl"}) do
- fennel["path"] = (fnldir .. dir .. ";" .. fennel.path)
- fennel["macro-path"] = (fnldir .. dir .. ";" .. fennel["macro-path"])
- end
-end
-
-fennel.install()
diff --git a/pkgs/custom-neovim/default.nix b/pkgs/custom-neovim/default.nix
index 57eea1d..28d448a 100644
--- a/pkgs/custom-neovim/default.nix
+++ b/pkgs/custom-neovim/default.nix
@@ -7,7 +7,7 @@ inputs.mnw.lib.wrap pkgs {
plugins = with pkgs.vimPlugins; {
dev.config = {
- pure = ./nvim;
+ pure = ./config;
};
start = [
# Core Plugins
@@ -32,17 +32,11 @@ inputs.mnw.lib.wrap pkgs {
opt = [];
};
- # luaFiles = [./config/init.lua];
-
- extraLuaPackages = lua:
- with lua; [
- fennel
- ];
+ luaFiles = [./config/init.lua];
extraBinPath = with pkgs; [
# LSP Servers
lua-language-server # Lua LS
- fennel-ls # Fennel LS
nixd # Nix LS
marksman # Markdown LS
diff --git a/pkgs/custom-neovim/design.md b/pkgs/custom-neovim/design.md
deleted file mode 100644
index dbbc269..0000000
--- a/pkgs/custom-neovim/design.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# Custom Neovim Design
-
-## UI
-
-- Fuzzy Finder: Telescope
-- Startpage: Mini.Starter?
-- Statusline: Mini.Status
-- Tabline: Tabby
-
-## LSP
-
-- Configs: LSPConfig
-- Actions:
-
-## Language Integration
-
-## Others
-
-- Fennel Neovim Config: Tangerine
-
diff --git a/pkgs/custom-neovim/nvim/lua/init.lua b/pkgs/custom-neovim/nvim/lua/init.lua
deleted file mode 100644
index 5507366..0000000
--- a/pkgs/custom-neovim/nvim/lua/init.lua
+++ /dev/null
@@ -1 +0,0 @@
-vim.cmd.colorscheme("evening")