2022-08-02 18:48:28 +00:00
|
|
|
{ pkgs, config, lib, ... }:
|
2021-12-06 22:35:29 +00:00
|
|
|
|
2023-05-04 11:10:19 +00:00
|
|
|
let
|
|
|
|
inherit (pkgs.stdenv) isDarwin;
|
|
|
|
inherit (lib) optionals;
|
|
|
|
in
|
2021-12-06 22:35:29 +00:00
|
|
|
{
|
|
|
|
programs.neovim = {
|
|
|
|
enable = true;
|
2023-05-10 21:37:11 +00:00
|
|
|
package = pkgs.neovim-nightly;
|
2021-12-06 22:35:29 +00:00
|
|
|
|
2022-12-31 15:26:44 +00:00
|
|
|
defaultEditor = true;
|
|
|
|
|
2021-12-07 15:23:17 +00:00
|
|
|
withNodeJs = false;
|
|
|
|
withRuby = false;
|
|
|
|
withPython3 = false;
|
|
|
|
|
2023-03-27 19:19:01 +00:00
|
|
|
extraLuaPackages = luaPkgs: with luaPkgs; [ jsregexp readline ];
|
2022-08-13 20:04:34 +00:00
|
|
|
|
2021-12-06 22:35:29 +00:00
|
|
|
extraPackages = with pkgs; [
|
2022-02-03 22:35:52 +00:00
|
|
|
git
|
2022-05-04 13:02:31 +00:00
|
|
|
nodejs
|
2021-12-06 22:35:29 +00:00
|
|
|
tree-sitter
|
2022-06-13 19:58:46 +00:00
|
|
|
fd
|
2022-02-12 22:13:58 +00:00
|
|
|
ripgrep
|
2021-12-06 22:35:29 +00:00
|
|
|
|
|
|
|
# LSP
|
2022-11-27 16:12:49 +00:00
|
|
|
fennel-ls
|
2023-04-06 09:01:18 +00:00
|
|
|
nil
|
2021-12-06 22:35:29 +00:00
|
|
|
nodePackages.bash-language-server
|
|
|
|
nodePackages.dockerfile-language-server-nodejs
|
2022-05-04 13:02:31 +00:00
|
|
|
nodePackages.svelte-language-server
|
2021-12-20 17:43:23 +00:00
|
|
|
nodePackages.typescript-language-server
|
2021-12-06 22:35:29 +00:00
|
|
|
nodePackages.vscode-langservers-extracted
|
|
|
|
nodePackages.yaml-language-server
|
2023-02-12 21:13:10 +00:00
|
|
|
lua-language-server
|
2021-12-06 22:35:29 +00:00
|
|
|
taplo-lsp
|
|
|
|
|
2022-04-24 18:09:54 +00:00
|
|
|
# Diagnostic Tools
|
2022-11-27 16:12:49 +00:00
|
|
|
checkstyle
|
2022-04-09 15:39:52 +00:00
|
|
|
deadnix
|
2023-05-01 21:09:15 +00:00
|
|
|
nodePackages.eslint_d
|
2021-12-06 22:35:29 +00:00
|
|
|
hadolint
|
2023-03-27 19:19:01 +00:00
|
|
|
luajitPackages.fennel
|
2022-04-05 19:57:44 +00:00
|
|
|
fnlfmt
|
2023-04-06 09:01:18 +00:00
|
|
|
nixpkgs-fmt
|
2021-12-06 22:35:29 +00:00
|
|
|
shellcheck
|
|
|
|
shfmt
|
2021-12-18 23:25:21 +00:00
|
|
|
statix
|
2022-08-24 23:12:41 +00:00
|
|
|
yamllint
|
2023-05-04 11:10:19 +00:00
|
|
|
] ++ optionals isDarwin [
|
2023-03-27 19:19:01 +00:00
|
|
|
xcbuild
|
2021-12-06 22:35:29 +00:00
|
|
|
];
|
|
|
|
|
2023-03-27 18:52:26 +00:00
|
|
|
extraLuaConfig =
|
|
|
|
let
|
|
|
|
treesitter-parsers = pkgs.symlinkJoin {
|
|
|
|
name = "treesitter-parsers";
|
|
|
|
paths = (pkgs.vimPlugins.nvim-treesitter.withPlugins (p: [
|
|
|
|
p.bash
|
|
|
|
p.comment
|
|
|
|
p.css
|
|
|
|
p.dockerfile
|
|
|
|
p.elixir
|
|
|
|
p.erlang
|
|
|
|
p.fennel
|
|
|
|
p.fish
|
|
|
|
p.heex
|
|
|
|
p.html
|
|
|
|
p.http
|
|
|
|
p.java
|
|
|
|
p.javascript
|
|
|
|
p.jsdoc
|
|
|
|
p.json
|
|
|
|
p.lua
|
|
|
|
p.make
|
|
|
|
p.markdown
|
|
|
|
p.markdown-inline
|
|
|
|
p.nix
|
|
|
|
p.query
|
|
|
|
p.regex
|
|
|
|
p.ruby
|
|
|
|
p.scss
|
|
|
|
p.sql
|
|
|
|
p.svelte
|
|
|
|
p.toml
|
|
|
|
p.tsx
|
|
|
|
p.typescript
|
|
|
|
p.vim
|
|
|
|
p.yaml
|
|
|
|
])).dependencies;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
''
|
2023-03-27 20:40:18 +00:00
|
|
|
vim.loader.enable()
|
2023-03-27 18:52:26 +00:00
|
|
|
vim.opt.runtimepath:append("${treesitter-parsers}")
|
|
|
|
|
|
|
|
require('nifoc.nix')
|
|
|
|
require('configuration.init')
|
|
|
|
'';
|
|
|
|
|
2023-03-27 19:19:01 +00:00
|
|
|
plugins =
|
|
|
|
let
|
|
|
|
customPlugins = import ./plugins.nix { inherit pkgs; };
|
|
|
|
in
|
|
|
|
(with customPlugins; [
|
|
|
|
# Utils
|
|
|
|
popup-nvim
|
|
|
|
plenary-nvim
|
|
|
|
nvim-web-devicons
|
|
|
|
|
|
|
|
# Keybindings
|
|
|
|
{
|
|
|
|
plugin = nvim-osc52;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/osc52.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = yanky-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/yanky.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = cutlass-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/cutlass.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = substitute-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/substitute.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = leap-nvim;
|
|
|
|
config = ''
|
|
|
|
(let [leap (require :leap)]
|
|
|
|
(leap.set_default_keymaps))
|
|
|
|
'';
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
# Themes
|
|
|
|
dracula-nvim
|
|
|
|
|
|
|
|
# Syntax
|
|
|
|
{
|
|
|
|
plugin = nvim-treesitter;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/treesitter.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
nvim-ts-rainbow2
|
|
|
|
playground
|
|
|
|
|
|
|
|
# Telescope
|
|
|
|
{
|
|
|
|
plugin = telescope-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/telescope.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
telescope-fzf-native-nvim
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = project-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/project.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = todo-comments-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/todo-comments.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
telescope-ui-select-nvim
|
|
|
|
telescope-toggleterm-nvim
|
|
|
|
telescope-undo-nvim
|
|
|
|
|
|
|
|
# LSP
|
|
|
|
{
|
|
|
|
plugin = nvim-lspconfig;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/lsp.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
nvim-jdtls
|
|
|
|
|
|
|
|
lspkind-nvim
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = nvim-navic;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/navic.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = vim-illuminate;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/illuminate.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
# Linter
|
|
|
|
{
|
|
|
|
plugin = nvim-lint;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/nvim-lint.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
# Comments
|
|
|
|
{
|
|
|
|
plugin = comment-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/comment.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
# Snippets
|
|
|
|
{
|
|
|
|
plugin = LuaSnip;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/luasnip.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
friendly-snippets
|
|
|
|
|
|
|
|
# cmp
|
|
|
|
{
|
|
|
|
plugin = nvim-cmp;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/cmp.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
cmp-nvim-lsp
|
|
|
|
# cmp-nvim-lsp-signature-help
|
|
|
|
cmp_luasnip
|
|
|
|
cmp-path
|
|
|
|
cmp-buffer
|
|
|
|
cmp-treesitter
|
|
|
|
cmp-cmdline
|
|
|
|
cmp-nvim-lsp-document-symbol
|
|
|
|
|
|
|
|
# Formatting
|
|
|
|
{
|
|
|
|
plugin = neoformat;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/neoformat.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
# Pairs
|
|
|
|
{
|
|
|
|
plugin = nvim-autopairs;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/autopairs.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = nvim-ts-autotag;
|
|
|
|
config = ''
|
|
|
|
(let [ts-autotag (require :nvim-ts-autotag)]
|
|
|
|
(ts-autotag.setup))
|
|
|
|
'';
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = vim-matchup;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/matchup.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
# Textobjects
|
|
|
|
nvim-treesitter-textobjects
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = nvim-surround;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/surround.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
# UI
|
|
|
|
{
|
|
|
|
plugin = heirline-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/heirline.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = indent-blankline-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/indent_line.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = virt-column-nvim;
|
|
|
|
config = ''
|
|
|
|
(let [virt-column (require :virt-column)]
|
|
|
|
(virt-column.setup))
|
|
|
|
'';
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = toggleterm-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/toggleterm.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = urlview-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/urlview.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = gitsigns-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/gitsigns.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
|
|
|
|
nvim-notify
|
|
|
|
nui-nvim
|
|
|
|
|
|
|
|
{
|
|
|
|
plugin = noice-nvim;
|
|
|
|
config = builtins.readFile ../../config/nvim/plugins/noice.fnl;
|
|
|
|
type = "fennel";
|
|
|
|
}
|
|
|
|
]);
|
2021-12-06 22:35:29 +00:00
|
|
|
};
|
|
|
|
|
2022-04-05 21:13:56 +00:00
|
|
|
xdg.configFile."nvim" = {
|
2022-04-15 20:43:51 +00:00
|
|
|
source = pkgs.runCommand "nvim-fennel-files"
|
2022-04-05 19:57:44 +00:00
|
|
|
{
|
2023-03-27 19:19:01 +00:00
|
|
|
nativeBuildInputs = with pkgs; [ luajitPackages.fennel stylua ];
|
2022-04-05 19:57:44 +00:00
|
|
|
} ''
|
2022-04-05 21:13:56 +00:00
|
|
|
mkdir -p $out/lua/configuration
|
|
|
|
mkdir -p $out/lua/nifoc/utils
|
2022-11-27 16:12:49 +00:00
|
|
|
mkdir -p $out/ftplugin
|
2022-04-05 21:13:56 +00:00
|
|
|
mkdir -p $out/after/ftplugin
|
2022-04-05 19:57:44 +00:00
|
|
|
|
2022-04-05 21:13:56 +00:00
|
|
|
config_store_path="${../../config/nvim}"
|
2022-05-12 19:49:19 +00:00
|
|
|
fennel="fennel --use-bit-lib --compile"
|
|
|
|
|
|
|
|
echo "Using fennel command: $fennel"
|
|
|
|
|
|
|
|
# Change PWD to config directory
|
|
|
|
cd "$config_store_path"
|
2022-04-05 19:57:44 +00:00
|
|
|
|
2022-04-05 21:13:56 +00:00
|
|
|
# Init
|
2022-05-12 19:49:19 +00:00
|
|
|
echo "Compiling init.fnl ..."
|
2022-04-05 21:13:56 +00:00
|
|
|
$fennel "$config_store_path/init.fnl" > "$out/lua/configuration/init.lua"
|
|
|
|
|
|
|
|
# Utils
|
|
|
|
nifoc_store_path="$config_store_path/nifoc"
|
|
|
|
nifoc_store_fnl="$(find "$nifoc_store_path" -type f -name '*.fnl')"
|
|
|
|
|
|
|
|
for fnlfile in $nifoc_store_fnl; do
|
|
|
|
file_out_path="$(echo "$fnlfile" | sed "s|$nifoc_store_path/||" | sed "s/.fnl$/.lua/")"
|
|
|
|
|
|
|
|
echo "Compiling $fnlfile ..."
|
|
|
|
$fennel "$fnlfile" > "$out/lua/nifoc/$file_out_path"
|
|
|
|
done
|
|
|
|
|
2022-11-27 16:12:49 +00:00
|
|
|
# ftplugin
|
|
|
|
ftplugin_store_path="$config_store_path/ftplugin"
|
|
|
|
ftplugin_store_fnl="$(find "$ftplugin_store_path" -type f -name '*.fnl')"
|
|
|
|
|
|
|
|
for fnlfile in $ftplugin_store_fnl; do
|
|
|
|
file_out_path="$(echo "$fnlfile" | sed "s|$ftplugin_store_path/||" | sed "s/.fnl$/.lua/")"
|
|
|
|
|
|
|
|
echo "Compiling $fnlfile ..."
|
|
|
|
$fennel "$fnlfile" > "$out/ftplugin/$file_out_path"
|
|
|
|
done
|
|
|
|
|
2022-04-05 21:13:56 +00:00
|
|
|
# After
|
|
|
|
after_store_path="$config_store_path/after"
|
|
|
|
after_store_fnl="$(find "$after_store_path" -type f -name '*.fnl')"
|
2022-04-05 19:57:44 +00:00
|
|
|
|
2022-04-05 21:13:56 +00:00
|
|
|
for fnlfile in $after_store_fnl; do
|
|
|
|
file_out_path="$(echo "$fnlfile" | sed "s|$after_store_path/||" | sed "s/.fnl$/.lua/")"
|
2022-04-05 19:57:44 +00:00
|
|
|
|
|
|
|
echo "Compiling $fnlfile ..."
|
2022-04-05 21:13:56 +00:00
|
|
|
$fennel "$fnlfile" > "$out/after/$file_out_path"
|
2022-04-05 19:57:44 +00:00
|
|
|
done
|
|
|
|
|
2022-05-12 19:49:19 +00:00
|
|
|
# Plugins
|
|
|
|
echo "Compiling plugin configuration ..."
|
|
|
|
{
|
|
|
|
cat <<EOF
|
|
|
|
${config.programs.neovim.generatedConfigs.fennel}
|
|
|
|
nil
|
|
|
|
EOF
|
|
|
|
} | $fennel - > "$out/lua/configuration/plugins.lua"
|
|
|
|
|
|
|
|
# Other
|
|
|
|
echo "Copying tree-sitter queries ..."
|
2022-04-05 21:13:56 +00:00
|
|
|
cp -r "$after_store_path/queries" "$out/after/"
|
2022-04-05 19:57:44 +00:00
|
|
|
|
2022-04-05 21:13:56 +00:00
|
|
|
stylua "$out/"
|
|
|
|
'';
|
2021-12-06 22:35:29 +00:00
|
|
|
recursive = true;
|
|
|
|
};
|
2021-12-27 20:24:11 +00:00
|
|
|
|
2023-03-27 20:40:18 +00:00
|
|
|
home.file =
|
|
|
|
let
|
|
|
|
nvim-spell-directory = "${config.xdg.configHome}/nvim/spell";
|
|
|
|
in
|
|
|
|
{
|
|
|
|
"${nvim-spell-directory}/de.utf-8.spl".source = builtins.fetchurl {
|
|
|
|
url = "http://ftp.vim.org/pub/vim/runtime/spell/de.utf-8.spl";
|
|
|
|
sha256 = "73c7107ea339856cdbe921deb92a45939c4de6eb9c07261da1b9dd19f683a3d1";
|
|
|
|
};
|
2022-07-06 21:44:31 +00:00
|
|
|
|
2023-03-27 20:40:18 +00:00
|
|
|
"${nvim-spell-directory}/de.utf-8.sug".source = builtins.fetchurl {
|
|
|
|
url = "http://ftp.vim.org/pub/vim/runtime/spell/de.utf-8.sug";
|
|
|
|
sha256 = "13d0ecf92863d89ef60cd4a8a5eb2a5a13a0e8f9ba8d1c6abe47aba85714a948";
|
2022-07-06 21:44:31 +00:00
|
|
|
};
|
2023-03-27 20:40:18 +00:00
|
|
|
};
|
2021-12-06 22:35:29 +00:00
|
|
|
}
|