nixpkgs/home/programs/neovim.nix
Daniel Siepmann b3ad833ac1
Switch from ag(silver sarcher) to rg
It looks like the more up to date and established tool.
It looks like a faster tool.
It can be used by telescope neovim plugin to find files.
It supports an .ignore file in combination with .gitignore for more fine
grained setup.
2023-10-19 07:53:14 +02:00

359 lines
10 KiB
Nix

{
pkgs,
sqlformat
}:
let
# The folder contains the expected `~/.config/nvim/` structure
# This structure is the same for plugins.
# I therefore just load this folder as plugin.
configuration = pkgs.vimUtils.buildVimPlugin {
pname = "configuration";
version = "v1.0.0";
src = ./neovim/configuration;
};
colorscheme-smyckblue = pkgs.vimUtils.buildVimPlugin rec {
pname = "colorscheme-smyckblue";
version = "v1.2.0";
src = pkgs.fetchgit {
url = "https://git.daniel-siepmann.de/danielsiepmann/vim-${pname}.git";
rev = version;
sha256 = "sha256-sPb+okBt060i3eYPIRwXK9O9aCE35z09vxexqv++BH0=";
};
};
neotags = pkgs.vimUtils.buildVimPlugin rec {
pname = "neotags";
version = "v0.3.0";
src = pkgs.fetchgit {
url = "https://git.daniel-siepmann.de/danielsiepmann/${pname}.git";
rev = version;
sha256 = "uJ7cl+1Ngff0FKzjmh1i7O/PkNjPvPT+ZEHgceeZcz0=";
};
nativeBuildInputs = [
pkgs.python3
];
preInstall = ''
rm -rf Dockerfile readme.rst .gitlab-ci.yml rplugin/test
python -m compileall rplugin
'';
};
syntax-typoscript = pkgs.vimUtils.buildVimPlugin rec {
pname = "syntax-typoscript";
version = "v2.0.0";
src = pkgs.fetchgit {
url = "https://git.daniel-siepmann.de/danielsiepmann/vim-${pname}.git";
rev = version;
sha256 = "sha256-fCB+ikDmkfEP/W0pFYGrsZiH30vT0g3z6GZpRGk0Rhc=";
};
};
syntax-nix = pkgs.vimUtils.buildVimPlugin rec {
pname = "syntax-nix";
version = "63b47b39c8d481ebca3092822ca8972e08df769b";
src = pkgs.fetchFromGitHub {
owner = "LnL7";
repo = "vim-nix";
rev = version;
sha256 = "wQzNXfE7JFalgiCQ2ksPAUyFKacmJV7mNKmKDe9jySI=";
};
};
syntax-fluid = pkgs.vimUtils.buildVimPlugin rec {
pname = "syntax-fluid";
version = "cedc4ad871941e8f7134d1d71f9434f1bc3d93d5";
src = pkgs.fetchFromGitHub {
owner = "mipmip";
repo = "vim-fluid";
rev = version;
sha256 = "LiS2Dqw1K1Fu5VfHQnxIBDxDzEarmSAUUavQcwHRDsQ=";
};
};
syntax-mustache = pkgs.vimUtils.buildVimPlugin rec {
pname = "syntax-mustahce";
version = "0153fe03a919add2d6cf2d41b2d5b6e1188bc0e0";
src = pkgs.fetchFromGitHub {
owner = "mustache";
repo = "vim-mustache-handlebars";
rev = version;
sha256 = "lmYt+GKuXhbOhu3HufqIFE2DvzUYlk5vGqU6tpJ2yjY=";
};
};
rg = pkgs.vimUtils.buildVimPlugin rec {
pname = "rg";
version = "c24e37093929a60e61761bdfa591af6984e49b51";
src = pkgs.fetchFromGitHub {
owner = "duane9/";
repo = "nvim-rg";
rev = version;
sha256 = "PBDdkhZq5OnYpWSbLRG8krMTcuaCRn0mSpRLCqnEgLk=";
};
};
vdebug = pkgs.vimUtils.buildVimPlugin rec {
pname = "vdebug";
version = "f979cc065e63796bdf60f014ae2280ce8e72cded";
src = pkgs.fetchFromGitHub {
owner = "joonty";
repo = pname;
rev = version;
sha256 = "sha256-0pvRdqogxYs2QMH1uHTJzLY5QtvenSyowcqkGhtauLY=";
};
};
diff-fold = pkgs.vimUtils.buildVimPlugin rec {
pname = "diff-fold";
version = "48b4505c1b6f14ceb4e4be732aad337147ef36cd";
src = pkgs.fetchFromGitHub {
owner = "sgeb";
repo = "vim-${pname}";
rev = version;
sha256 = "M3CAUueEhLD0J6sLUpRkFv+vK4aGYO+Xnokxmn+VxqU=";
};
};
neoterm = pkgs.vimUtils.buildVimPlugin rec {
pname = "neoterm";
version = "e78179a9ceb98de8d0c37bdda435a5deab4d5e71";
src = pkgs.fetchFromGitHub {
owner = "kassio";
repo = pname;
rev = version;
sha256 = "0w962xfcgigdw41wblrv1l55xki0kl5vwkdbm6jlr44hzii0nhgz";
};
patches = [
./neovim/patches/disable_neoterm_repl.patch
];
};
tagbar = pkgs.vimUtils.buildVimPlugin rec {
pname = "tagbar";
version = "v2.7";
src = pkgs.fetchFromGitHub {
owner = "majutsushi";
repo = pname;
rev = version;
sha256 = "Eg6xRwisopmBexqkWjRbSi9aQC4uCXbFO6SCK1LY+Ow=";
};
};
# Use `let g:test#last_command="<command>"` to set a test to execute when repeating last.
# Note that you need to set further variables, or execute a matching test beforehand.
test = pkgs.vimUtils.buildVimPlugin rec {
pname = "test";
version = "c63b94c1e5089807f4532e05f087351ddb5a207c";
src = pkgs.fetchFromGitHub {
owner = "vim-${pname}";
repo = "vim-${pname}";
rev = version;
sha256 = "feXB4AHalJgJDxS/kM3aXGwyi3xvSfMlFULUGNIE7bM=";
};
patches = [
./neovim/patches/disable_test_paratest.patch
./neovim/patches/test_fix_codeception_nearest.patch
./neovim/patches/test_limit_codeception.patch
];
};
telescope-ctags-outline = pkgs.vimUtils.buildVimPlugin rec {
pname = "telescope-ctags-outline";
version = "35b2df9545f72352502703ba06b7ab711fa25e51";
src = pkgs.fetchFromGitHub {
owner = "fcying";
repo = "${pname}.nvim";
rev = version;
sha256 = "e8QcD7H2unmoaLaN1JUxtOGQYBJGAXtfSnj8sW66ff4=";
};
};
in {
enable = true;
# TODO: Check out these plugins as additions / replacements:
# - https://github.com/NTBBloodbath/rest.nvim recommended by Sascha, allows to write and execute requests
# - https://github.com/glacambre/firenvim Give it another try, integrates neovim into firefox
# - https://github.com/sindrets/diffview.nvim/
# - https://github.com/weilbith/nvim-code-action-menu/ Check again in future, right now not of much useness on my setup.
#
# Alternatives:
# - https://github.com/mfussenegger/nvim-dap Alternative to Vdebug, more modern and should work with firefox as well? But needs node …)
# - https://github.com/nvim-neo-tree/neo-tree.nvim (General tree, not only filesystem, alternative to nerdtree but can also be used for buffers etc.)
# - https://github.com/simrat39/symbols-outline.nvim/ Replacement for tagbar using lsp, combine with https://github.com/jose-elias-alvarez/null-ls.nvim once it supports Workspace Symbols / Document Symbol
plugins = with pkgs.vimPlugins; [
# My own plugins
colorscheme-smyckblue
neotags
{
plugin = configuration;
config = ''
au FileType sql setlocal formatprg=${sqlformat}/bin/sqlformat
'';
}
syntax-typoscript
# More UI related
{
plugin = nerdtree;
config = builtins.readFile(./neovim/plugins/nerdtree.vim);
}
{
plugin = undotree;
config = builtins.readFile(./neovim/plugins/undotree.vim);
}
{
# Use pinned to 2.7 as I don't need any of the new features.
# Instead they make it hard to only show what I'm interested in within PHP files.
# As they changed the building with nested structures.
plugin = tagbar;
config = builtins.readFile(./neovim/plugins/tagbar.vim);
}
{
plugin = telescope-nvim;
type = "lua";
config = builtins.readFile(./neovim/plugins/telescope.lua);
}
{
plugin = telescope-ctags-outline;
type = "lua";
config = builtins.readFile(./neovim/plugins/telescope-ctags-outline.lua);
}
dressing-nvim
# Syntax
syntax-nix
syntax-mustache
i3config-vim
typescript-vim
syntax-fluid
vim-twig
# PHP Syntax is loaded via xdg config file.
# This is necessart as Vim provides a native syntax which would be loaded before the one defined here.
# See: https://github.com/NixOS/nixpkgs/commit/cda1f8ae46869c429971323717d622d5b17d9854 where runtimepath is not set.
# Adding features
rg
diff-fold
BufOnly-vim
{
plugin = vim-snipmate;
# I didn't migrate snippets to new format, yet.
config = ''
let g:snipMate = { 'snippet_version' : 0 }
'';
}
fugitive
vim-commentary
vim-indent-object
vim-textobj-comment
{
plugin = vdebug;
config = builtins.readFile(./neovim/plugins/vdebug.vim);
}
{
# Seems to be broken: https://github.com/kassio/neoterm/issues/338
# Therefore I install my own version where this bug is disabled
plugin = neoterm;
config = builtins.readFile(./neovim/plugins/neoterm.vim);
}
{
plugin = phpactor;
config = ''
" Make empty, as we have a full blown wrapper thanks to nix.
" Adding a php in front would interpret the wrapper via PHP.
let g:phpactorPhpBin = ""
let g:phpactorOmniError = v:true
'';
}
# LSP (=Language Server Protocol)
# I remove diagnostics as I use ale instead.
# Maybe some day I need both or use lsp for some languages, docs:
# - https://neovim.io/doc/user/diagnostic.html#diagnostic-api
# - https://github.com/neovim/nvim-lspconfig/issues/662
# Add nix: https://discourse.nixos.org/t/nixd-1-1-0-released/29416
{
plugin = nvim-lspconfig;
type = "lua";
config = ''
vim.diagnostic.config({
virtual_text = true,
underline = false,
})
require('lspconfig').phpactor.setup({
cmd = {
'${pkgs.phpactor}/bin/phpactor',
'language-server',
},
})
'';
}
{
plugin = lsp_signature-nvim;
type = "lua";
config = builtins.readFile(./neovim/plugins/lsp-signature.lua);
}
# More related to testing, linting, …
{
plugin = ale;
config = builtins.readFile(./neovim/plugins/ale.vim)
# Keep line break as fileContents strips last EOL
+ ''
let g:ale_yaml_yamllint_executable = '${pkgs.yamllint}/bin/yamllint'
let g:ale_xml_xmllint_executable = '${pkgs.libxml2}/bin/xmllint'
let g:ale_gitcommit_gitlint_executable = '${pkgs.gitlint}/bin/gitlint'
let g:ale_nix_statix_check_executable = '${pkgs.statix}/bin/statix'
let g:ale_languagetool_executable = '${pkgs.languagetool}/bin/languagetool-commandline'
let g:ale_rstcheck_executable = '${pkgs.rstcheck}/bin/rstcheck'
'';
}
{
plugin = test;
config = builtins.readFile(./neovim/plugins/test.vim);
}
# Presentations
presenting-vim
goyo-vim
# Dependencies for other plugins
vim-addon-mw-utils
vim-textobj-user
plenary-nvim
];
}