2023-11-07 08:05:07 -05:00
|
|
|
{ pkgs, lib, neovim-flake, ... }: let
|
2023-07-19 21:52:35 -04:00
|
|
|
# installs a vim plugin from git with a given tag / branch
|
2023-10-01 23:27:59 -04:00
|
|
|
plugin = owner: repo: rev: hash: pkgs.vimUtils.buildVimPlugin {
|
2023-07-19 21:52:35 -04:00
|
|
|
pname = "${lib.strings.sanitizeDerivationName repo}";
|
2023-09-30 02:09:14 -04:00
|
|
|
version = rev;
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
inherit rev owner repo hash;
|
2023-07-19 21:52:35 -04:00
|
|
|
};
|
|
|
|
};
|
2023-10-27 01:15:33 -04:00
|
|
|
fileContents = lib.strings.fileContents;
|
|
|
|
in {
|
2023-10-28 18:20:09 -04:00
|
|
|
# TODO: make a gradle module and have java in device-vars.nix
|
2023-10-27 01:15:33 -04:00
|
|
|
xdg.dataFile = {
|
|
|
|
".gradle/gradle.properties".source =
|
|
|
|
pkgs.writeText "gradle.properties" ''
|
|
|
|
org.gradle.java.home = ${pkgs.temurin-bin-17}
|
|
|
|
'';
|
2023-09-19 23:23:19 -04:00
|
|
|
};
|
2023-10-22 15:35:25 -04:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
gradle
|
|
|
|
gradle-completion # FIXME: not working
|
|
|
|
];
|
|
|
|
|
2023-10-15 15:11:59 -04:00
|
|
|
programs = {
|
|
|
|
|
|
|
|
java = {
|
2023-09-19 12:54:00 -04:00
|
|
|
enable = true;
|
2023-10-15 15:11:59 -04:00
|
|
|
package = pkgs.temurin-bin-17;
|
|
|
|
};
|
|
|
|
|
|
|
|
neovim = {
|
|
|
|
enable = true;
|
2023-10-30 10:30:11 -04:00
|
|
|
# Temp fix https://github.com/nix-community/neovim-nightly-overlay/issues/332
|
|
|
|
package = neovim-flake.packages.x86_64-linux.default.override {
|
2023-11-07 08:05:07 -05:00
|
|
|
libvterm-neovim = pkgs.libvterm-neovim.overrideAttrs (prev: final: {
|
|
|
|
doCheck = false;
|
|
|
|
version = "0.3.3";
|
|
|
|
src = pkgs.fetchurl {
|
|
|
|
url = "https://launchpad.net/libvterm/trunk/v0.3.3/+download/libvterm-0.3.3.tar.gz";
|
|
|
|
hash = "sha256-CRVvQ90hKL00fL7r5Q2aVx0yxk4M8Y0hEZeUav9yJuA=";
|
|
|
|
};
|
|
|
|
});
|
2023-10-30 10:30:11 -04:00
|
|
|
};
|
2023-10-26 16:33:40 -04:00
|
|
|
withNodeJs = true;
|
|
|
|
withPython3 = true;
|
|
|
|
withRuby = false;
|
|
|
|
|
2023-10-26 00:35:24 -04:00
|
|
|
defaultEditor = true;
|
2023-10-15 15:11:59 -04:00
|
|
|
viAlias = true;
|
|
|
|
vimAlias = true;
|
|
|
|
|
|
|
|
extraPackages = with pkgs; [
|
|
|
|
nodejs_latest
|
2023-10-26 00:35:24 -04:00
|
|
|
nodePackages.npm
|
|
|
|
nodePackages.neovim
|
2023-10-15 15:11:59 -04:00
|
|
|
gradle
|
2023-10-26 00:35:24 -04:00
|
|
|
|
2023-10-15 15:11:59 -04:00
|
|
|
bat
|
|
|
|
|
|
|
|
nil
|
|
|
|
];
|
2023-10-26 00:35:24 -04:00
|
|
|
extraPython3Packages = with pkgs.python311Packages; [
|
|
|
|
pylint
|
|
|
|
];
|
2023-10-15 15:11:59 -04:00
|
|
|
|
|
|
|
coc = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
2023-10-26 16:33:40 -04:00
|
|
|
# General
|
2023-10-15 15:11:59 -04:00
|
|
|
"colors.enable" = true;
|
|
|
|
"coc.preferences.formatOnType" = true;
|
2023-10-26 16:41:32 -04:00
|
|
|
"diagnostic.checkCurrentLine" = true;
|
2023-10-26 00:35:24 -04:00
|
|
|
"inlayHint.enable" = false;
|
2023-10-20 21:06:44 -04:00
|
|
|
|
2023-10-26 16:33:40 -04:00
|
|
|
# Eslint
|
2023-10-20 17:46:00 -04:00
|
|
|
"eslint.format.enable" = true;
|
2023-10-20 21:06:44 -04:00
|
|
|
"eslint.autoFixOnSave" = true;
|
2023-10-26 16:33:40 -04:00
|
|
|
|
2023-10-27 01:15:33 -04:00
|
|
|
# Stylelint
|
2023-10-26 16:33:40 -04:00
|
|
|
"stylelintplus.enable" = true;
|
|
|
|
"stylelintplus.cssInJs" = true;
|
|
|
|
"stylelintplus.autoFixOnSave" = true;
|
2023-10-20 21:06:44 -04:00
|
|
|
"stylelintplus.autoFixOnFormat" = true;
|
|
|
|
"css.validate" = false;
|
|
|
|
"less.validate" = false;
|
|
|
|
"scss.validate" = false;
|
|
|
|
"wxss.validate" = false;
|
|
|
|
|
2023-10-26 16:33:40 -04:00
|
|
|
# Lua lsp
|
2023-10-15 15:11:59 -04:00
|
|
|
"Lua.misc.parameters" = [
|
|
|
|
"--metapath"
|
|
|
|
"~/.cache/sumneko_lua/meta"
|
|
|
|
"--logpath"
|
|
|
|
"~/.cache/sumneko_lua/log"
|
|
|
|
];
|
|
|
|
"Lua.workspace.library" = [
|
|
|
|
"$\{3rd\}/luv/library"
|
|
|
|
];
|
|
|
|
sumneko-lua = {
|
|
|
|
serverDir = "${pkgs.lua-language-server}/share/lua-language-server";
|
|
|
|
enableNvimLuaDev = true;
|
|
|
|
};
|
2023-10-20 21:06:44 -04:00
|
|
|
|
2023-10-26 16:33:40 -04:00
|
|
|
# Nix
|
2023-10-15 15:11:59 -04:00
|
|
|
languageserver = {
|
|
|
|
nix = {
|
|
|
|
command = "nil";
|
|
|
|
filetypes = [ "nix" ];
|
|
|
|
rootPatterns = [ "flake.nix" ];
|
|
|
|
};
|
2023-09-19 12:54:00 -04:00
|
|
|
};
|
2023-10-26 16:33:40 -04:00
|
|
|
|
|
|
|
# Misc
|
|
|
|
"java.jdt.ls.java.home" = "${pkgs.temurin-bin-17}";
|
|
|
|
"bashIde.shellcheckPath" = "${pkgs.shellcheck}/bin/shellcheck";
|
2023-09-19 12:54:00 -04:00
|
|
|
};
|
|
|
|
};
|
2023-10-03 11:08:56 -04:00
|
|
|
|
2023-10-27 01:15:33 -04:00
|
|
|
extraConfig = fileContents ./base.vim;
|
2023-10-15 15:11:59 -04:00
|
|
|
|
2023-10-27 01:15:33 -04:00
|
|
|
plugins = with pkgs.vimPlugins; [
|
|
|
|
# Coc configured
|
2023-10-15 15:11:59 -04:00
|
|
|
coc-css
|
2023-10-27 01:15:33 -04:00
|
|
|
coc-eslint
|
|
|
|
coc-java
|
|
|
|
coc-sh
|
|
|
|
coc-stylelintplus
|
|
|
|
{
|
|
|
|
plugin = coc-snippets;
|
|
|
|
type = "viml";
|
|
|
|
config = fileContents ./plugins/snippets.vim;
|
|
|
|
}
|
2023-10-26 16:33:40 -04:00
|
|
|
|
2023-10-27 01:15:33 -04:00
|
|
|
## Lua
|
2023-10-15 15:11:59 -04:00
|
|
|
coc-sumneko-lua
|
2023-10-26 16:33:40 -04:00
|
|
|
neodev-nvim
|
|
|
|
|
2023-10-27 01:15:33 -04:00
|
|
|
## Fzf
|
|
|
|
coc-fzf
|
|
|
|
fzfWrapper
|
|
|
|
fzf-vim
|
|
|
|
|
2023-10-15 15:11:59 -04:00
|
|
|
coc-highlight
|
|
|
|
coc-json
|
|
|
|
coc-pyright
|
|
|
|
coc-vimlsp
|
|
|
|
coc-yaml
|
|
|
|
coc-toml
|
|
|
|
coc-markdownlint
|
|
|
|
coc-tsserver
|
|
|
|
fugitive
|
2023-10-27 01:15:33 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
plugin = dracula-nvim;
|
|
|
|
type = "viml";
|
|
|
|
config = fileContents ./plugins/dracula.vim;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
plugin = lualine-nvim;
|
|
|
|
type = "lua";
|
|
|
|
config = fileContents ./plugins/lualine.lua;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
plugin = todo-comments-nvim;
|
|
|
|
type = "lua";
|
|
|
|
config = "require('todo-comments').setup()";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
plugin = gitsigns-nvim;
|
|
|
|
type = "lua";
|
2023-10-30 20:24:47 -04:00
|
|
|
config = fileContents ./plugins/gitsigns.lua;
|
2023-10-27 01:15:33 -04:00
|
|
|
}
|
|
|
|
{
|
|
|
|
plugin = nvim-autopairs;
|
|
|
|
type = "lua";
|
|
|
|
config = fileContents ./plugins/autopairs.lua;
|
|
|
|
}
|
2023-10-27 16:24:45 -04:00
|
|
|
nvim-treesitter-context
|
|
|
|
nvim-treesitter-textobjects
|
2023-10-27 01:15:33 -04:00
|
|
|
{
|
|
|
|
plugin = nvim-treesitter.withAllGrammars;
|
|
|
|
type = "viml";
|
|
|
|
config = fileContents ./plugins/treesitter.vim;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
plugin = (plugin "lukas-reineke" "indent-blankline.nvim"
|
|
|
|
"046e2cf04e08ece927bacbfb87c5b35c0b636546"
|
|
|
|
"sha256-bhoep8aTYje5K/dZ/XmpwBPn4PBEMPrmw33QJdfFe6M=");
|
|
|
|
type = "lua";
|
|
|
|
config = fileContents ./plugins/indent.lua;
|
|
|
|
}
|
|
|
|
{
|
2023-10-27 16:24:45 -04:00
|
|
|
plugin = mini-nvim;
|
2023-10-27 01:15:33 -04:00
|
|
|
type = "lua";
|
2023-10-27 16:24:45 -04:00
|
|
|
config = fileContents ./plugins/mini.lua;
|
2023-10-27 01:15:33 -04:00
|
|
|
}
|
|
|
|
{
|
|
|
|
plugin = neo-tree-nvim;
|
|
|
|
type = "viml";
|
|
|
|
config = ''
|
|
|
|
${fileContents ./plugins/neotree.vim}
|
|
|
|
|
|
|
|
lua << EOF
|
|
|
|
${fileContents ./plugins/neotree.lua}
|
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
}
|
2023-10-15 15:11:59 -04:00
|
|
|
];
|
|
|
|
};
|
2023-07-19 21:52:35 -04:00
|
|
|
};
|
|
|
|
}
|