Compare commits

..

2 Commits

Author SHA1 Message Date
Adam Jeniski
4bf170219c init fnl config w aniseed 2025-08-14 12:38:05 -04:00
Adam Jeniski
070218bc91 remove nfnl 2025-08-14 12:37:49 -04:00
5 changed files with 15 additions and 13 deletions

View File

@ -1 +0,0 @@
{}

10
.config/nvim/fnl/init.fnl Normal file
View File

@ -0,0 +1,10 @@
(module fnl-config
{require {a aniseed.core}})
(defn hi
[]
(a.println "Hello, World!"))
(defn add
[a b]
(+ a b))

View File

@ -1,9 +0,0 @@
(local foo 25)
(fn add [a b]
(+ a b))
{:add add}

View File

@ -1,3 +1,4 @@
--
--[[ --[[
===================================================================== =====================================================================
@ -246,7 +247,8 @@ rtp:prepend(lazypath)
-- --
-- NOTE: Here is where you install your plugins. -- NOTE: Here is where you install your plugins.
require("lazy").setup({ require("lazy").setup({
{ "Olical/nfnl", ft = "fennel", opts = {} }, -- { "Olical/nfnl", ft = "fennel", opts = {} },
"Olical/aniseed",
{ -- Adds git related signs to the gutter, as well as utilities for managing changes { -- Adds git related signs to the gutter, as well as utilities for managing changes
"lewis6991/gitsigns.nvim", "lewis6991/gitsigns.nvim",
@ -1013,4 +1015,5 @@ vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2 vim.opt.shiftwidth = 2
vim.opt.expandtab = true vim.opt.expandtab = true
require("main") require("aniseed.env").init()
fnl = require("fnl-config")

View File

@ -13,7 +13,6 @@
"mason-tool-installer.nvim": { "branch": "main", "commit": "517ef5994ef9d6b738322664d5fdd948f0fdeb46" }, "mason-tool-installer.nvim": { "branch": "main", "commit": "517ef5994ef9d6b738322664d5fdd948f0fdeb46" },
"mason.nvim": { "branch": "main", "commit": "7dc4facca9702f95353d5a1f87daf23d78e31c2a" }, "mason.nvim": { "branch": "main", "commit": "7dc4facca9702f95353d5a1f87daf23d78e31c2a" },
"mini.nvim": { "branch": "main", "commit": "0e9d1f972a91acf5a0513319099ba41f7c09c30a" }, "mini.nvim": { "branch": "main", "commit": "0e9d1f972a91acf5a0513319099ba41f7c09c30a" },
"nfnl": { "branch": "main", "commit": "4cbcfecf053417a05c643d1fd1d70d77772396cb" },
"nvim-lspconfig": { "branch": "master", "commit": "45ff1914044de7dbd4cd85053dc09f47312a2f4d" }, "nvim-lspconfig": { "branch": "master", "commit": "45ff1914044de7dbd4cd85053dc09f47312a2f4d" },
"nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" }, "nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" },
"plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" }, "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" },