2023-06-16 23:12:54 +00:00
# TODO: vim-plug and Mason supports laziness. Probably worth it to explore incremental dependencies based on the project TODO: just install these things, then symlink to mason's bin directory
#
# One thing to consider, though, /nix/store of `nix-shell` or `nix-develop`
# might be different from `home-manager`'s (~/.nix_profile/bin/jq)
2023-06-18 00:46:31 +00:00
{
inputs ,
cell ,
namespace ,
} : {
pkgs ,
lib ,
config ,
. . .
} : let
2023-06-16 23:12:54 +00:00
# NOTE: Add packages to nvim_pkgs instead, so that it's available at userspace
# and is added to the path after wrapping.
# check: nix repl `homeConfigurations.hungtr.config.programs.neovim.finalPackage.buildCommand`
# see: :/--suffix.*PATH
# there should be mentions of additional packages
my_neovim = pkgs . neovim-unwrapped ;
2023-06-18 07:52:08 +00:00
inherit ( inputs . nixpkgs ) system ;
2023-06-18 00:46:31 +00:00
nvim_pkgs =
[
# pkgs.gccStdenv
pkgs . tree-sitter
pkgs . fzf # file name fuzzy search
pkgs . ripgrep # content fuzzy search
pkgs . zk # Zettelkasten (limited support)
pkgs . fd # Required by a Telescope plugin (?)
pkgs . stdenv . cc . cc . lib
2023-06-18 09:51:33 +00:00
pkgs . nil # oxalica's better nix language server
2023-06-18 06:31:47 +00:00
inputs . nix-boost . packages . " ${ system } " . rust4cargo
2023-06-18 00:46:31 +00:00
pkgs . nickel
pkgs . nls
2023-06-16 23:12:54 +00:00
2023-06-18 00:46:31 +00:00
pkgs . go # doesn't work, Mason installs from runtime path
2023-06-16 23:12:54 +00:00
2023-06-18 00:46:31 +00:00
# Language-specific stuffs
pkgs . sumneko-lua-language-server
# pkgs.python3Packages.python-lsp-server
pkgs . nodePackages . pyright
pkgs . python3Packages . pylint
pkgs . python3Packages . flake8
# FIXME: installing ansible from here just doesn't work :/
# pkgs.ansible-lint
# pkgs.python38Packages.ansible
# pkgs.ansible-language-server
# TODO: the devShell should provide rust-analyzer so that
# cargo test builds binaries compatible with rust-analyzer
2023-06-16 23:12:54 +00:00
2023-06-18 00:46:31 +00:00
# pkgs.rust-analyzer
# rust_pkgs
# pkgs.evcxr # Rust REPL for Conjure!
2023-06-16 23:12:54 +00:00
]
2023-06-18 00:46:31 +00:00
++ lib . optionals ( pkgs . stdenv . isDarwin ) (
let
inherit ( pkgs . darwin . apple_sdk . frameworks ) System CoreFoundation ;
in [
System
CoreFoundation
]
) ;
in {
2023-06-16 23:12:54 +00:00
options . base . neovim = {
enable = lib . mkOption {
default = true ;
description = " e n a b l e p e r s o n a l i z e d n e o v i m a s d e f a u l t e d i t o r " ;
type = lib . types . bool ;
example = false ;
} ;
} ;
config = lib . mkIf config . base . neovim . enable {
# home-manager
programs . neovim = {
enable = true ;
package = my_neovim ;
viAlias = true ;
vimAlias = true ;
withPython3 = true ;
withNodeJs = true ;
# NOTE: this adds path to the wrapped version of neovim
extraPackages = nvim_pkgs ;
2023-06-18 00:46:31 +00:00
extraLuaConfig = builtins . readFile " ${ inputs . self } / n a t i v e _ c o n f i g s / n e o v i m / i n i t . l u a " ;
plugins = let
inherit
2023-06-18 09:06:08 +00:00
( inputs . nixpkgs-latest . legacyPackages . ${ system } . vimPlugins )
2023-06-18 00:46:31 +00:00
plenary-nvim
nvim-treesitter
nvim-treesitter-textobjects
nvim-treesitter-context
telescope-fzf-native-nvim
telescope-file-browser-nvim
telescope-nvim
nvim-lspconfig
gruvbox-community
neodev-nvim
cmp-nvim-lsp
cmp-path
cmp-buffer
cmp-cmdline
nvim-cmp
lspkind-nvim
nvim-autopairs
nvim-ts-autotag
guess-indent-nvim
harpoon
zk-nvim
luasnip
fidget-nvim
rust-tools-nvim
cmp_luasnip
gitsigns-nvim
indent-blankline-nvim
lualine-nvim
mason-lspconfig-nvim
mason-nvim
neogit
nlua-nvim
nvim-jqx
nvim-surround
nvim-web-devicons
playground
todo-comments-nvim
trouble-nvim
vim-dispatch
vim-dispatch-neovim
vim-fugitive
vim-jack-in
;
in [
2023-06-16 23:12:54 +00:00
plenary-nvim
nvim-treesitter . withAllGrammars
nvim-treesitter-textobjects
telescope-fzf-native-nvim
telescope-file-browser-nvim
telescope-nvim
nvim-lspconfig
gruvbox-community
neodev-nvim
cmp-nvim-lsp
cmp-path
cmp-buffer
cmp-cmdline
nvim-cmp
lspkind-nvim
nvim-autopairs
nvim-ts-autotag
guess-indent-nvim
harpoon
zk-nvim
luasnip
nvim-treesitter-context
fidget-nvim
rust-tools-nvim
cmp_luasnip
gitsigns-nvim
indent-blankline-nvim
lualine-nvim
mason-lspconfig-nvim
mason-nvim
neogit
nlua-nvim
nvim-jqx
nvim-surround
nvim-web-devicons
playground
todo-comments-nvim
trouble-nvim
vim-dispatch
vim-dispatch-neovim
vim-fugitive
2023-06-18 00:46:31 +00:00
vim-jack-in
] ;
2023-06-16 23:12:54 +00:00
} ;
# home.packages = nvim_pkgs;
} ;
}