Compare commits
No commits in common. "98ef1506d1bed597ae5c5a32c9375437f5cfe22c" and "a06b732d25e669668a1774112a5dcc83162177c1" have entirely different histories.
98ef1506d1
...
a06b732d25
4 changed files with 96 additions and 125 deletions
|
@ -65,7 +65,6 @@
|
||||||
alejandra
|
alejandra
|
||||||
bash-language-server
|
bash-language-server
|
||||||
biome
|
biome
|
||||||
codespell
|
|
||||||
curl
|
curl
|
||||||
docker-compose-language-service
|
docker-compose-language-service
|
||||||
dockerfile-language-server-nodejs
|
dockerfile-language-server-nodejs
|
||||||
|
@ -346,9 +345,7 @@
|
||||||
general = true;
|
general = true;
|
||||||
test = false;
|
test = false;
|
||||||
};
|
};
|
||||||
extra = {
|
extra = {};
|
||||||
vue-ls-path = "${pkgs.lib.getExe pkgs.vue-language-server}";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
202
init.lua
202
init.lua
|
@ -1,15 +1,17 @@
|
||||||
require('nixCatsUtils').setup({
|
-- NOTE: this just gives nixCats global command a default value
|
||||||
|
-- so that it doesnt throw an error if you didnt install via nix.
|
||||||
|
-- usage of both this setup and the nixCats command is optional,
|
||||||
|
-- but it is very useful for passing info from nix to lua so you will likely use it at least once.
|
||||||
|
require('nixCatsUtils').setup {
|
||||||
non_nix_value = true,
|
non_nix_value = true,
|
||||||
})
|
}
|
||||||
|
|
||||||
|
-- NOTE: You might want to move the lazy-lock.json file
|
||||||
local function getlockfilepath()
|
local function getlockfilepath()
|
||||||
if
|
if require('nixCatsUtils').isNixCats and type(nixCats.settings.unwrappedCfgPath) == 'string' then
|
||||||
require('nixCatsUtils').isNixCats
|
|
||||||
and type(nixCats.settings.unwrappedCfgPath) == 'string'
|
|
||||||
then
|
|
||||||
return nixCats.settings.unwrappedCfgPath .. '/lazy-lock.json'
|
return nixCats.settings.unwrappedCfgPath .. '/lazy-lock.json'
|
||||||
else
|
else
|
||||||
return vim.fn.stdpath('config') .. '/lazy-lock.json'
|
return vim.fn.stdpath 'config' .. '/lazy-lock.json'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local lazyOptions = {
|
local lazyOptions = {
|
||||||
|
@ -19,107 +21,93 @@ local lazyOptions = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
require('nixCatsUtils.lazyCat').setup(
|
-- NOTE: this the lazy wrapper. Use it like require('lazy').setup() but with an
|
||||||
nixCats.pawsible({ 'allPlugins', 'start', 'lazy.nvim' }),
|
-- extra argument, the path to lazy.nvim as downloaded by nix, or nil, before
|
||||||
|
-- the normal arguments.
|
||||||
|
require('nixCatsUtils.lazyCat').setup(nixCats.pawsible { 'allPlugins', 'start', 'lazy.nvim' }, {
|
||||||
|
{ 'LazyVim/LazyVim', import = 'lazyvim.plugins' },
|
||||||
|
|
||||||
{
|
{
|
||||||
{ 'LazyVim/LazyVim', import = 'lazyvim.plugins' },
|
'folke/lazydev.nvim',
|
||||||
|
ft = 'lua',
|
||||||
{
|
opts = {
|
||||||
'folke/lazydev.nvim',
|
library = {
|
||||||
ft = 'lua',
|
-- Adds type hints for nixCats global, but LazyDev is just nice in
|
||||||
opts = {
|
-- general.
|
||||||
library = {
|
{ path = (nixCats.nixCatsPath or '') .. '/lua', words = { 'nixCats' } },
|
||||||
{
|
|
||||||
path = (nixCats.nixCatsPath or '') .. '/lua',
|
|
||||||
words = { 'nixCats' },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Extras.
|
|
||||||
{ import = 'lazyvim.plugins.extras.coding.luasnip' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.coding.mini-comment' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.coding.mini-surround' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.coding.neogen' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.coding.yanky' },
|
|
||||||
|
|
||||||
{ import = 'lazyvim.plugins.extras.editor.aerial' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.editor.dial' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.editor.navic' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.editor.neo-tree' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.editor.refactoring' },
|
|
||||||
|
|
||||||
{ import = 'lazyvim.plugins.extras.formatting.biome' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.formatting.prettier' },
|
|
||||||
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.docker' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.git' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.go' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.helm' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.json' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.markdown' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.nix' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.nushell' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.php' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.python' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.ruby' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.sql' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.tailwind' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.terraform' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.toml' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.typescript' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.vue' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.lang.yaml' },
|
|
||||||
|
|
||||||
{ import = 'lazyvim.plugins.extras.linting.eslint' },
|
|
||||||
|
|
||||||
{ import = 'lazyvim.plugins.extras.test.core' },
|
|
||||||
|
|
||||||
{ import = 'lazyvim.plugins.extras.ui.mini-animate' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.ui.treesitter-context' },
|
|
||||||
|
|
||||||
{ import = 'lazyvim.plugins.extras.util.dot' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.util.mini-hipatterns' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.util.octo' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.util.project' },
|
|
||||||
{ import = 'lazyvim.plugins.extras.util.rest' },
|
|
||||||
|
|
||||||
-- These need to be after extras to prevent extras from overwriting them.
|
|
||||||
|
|
||||||
-- Disable mason.nvim while using Nix.
|
|
||||||
{
|
|
||||||
'williamboman/mason-lspconfig.nvim',
|
|
||||||
enabled = require('nixCatsUtils').lazyAdd(true, false),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'williamboman/mason.nvim',
|
|
||||||
enabled = require('nixCatsUtils').lazyAdd(true, false),
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
'nvim-treesitter/nvim-treesitter',
|
|
||||||
build = require('nixCatsUtils').lazyAdd(':TSUpdate'),
|
|
||||||
opts_extend = require('nixCatsUtils').lazyAdd(nil, false),
|
|
||||||
opts = {
|
|
||||||
-- Disable parser installation while using Nix.
|
|
||||||
ensure_installed = require('nixCatsUtils').lazyAdd({
|
|
||||||
'bash',
|
|
||||||
'c',
|
|
||||||
'diff',
|
|
||||||
'html',
|
|
||||||
'lua',
|
|
||||||
'luadoc',
|
|
||||||
'markdown',
|
|
||||||
'vim',
|
|
||||||
'vimdoc',
|
|
||||||
}, false),
|
|
||||||
auto_install = require('nixCatsUtils').lazyAdd(true, false),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
-- import/override with your plugins
|
|
||||||
{ import = 'plugins' },
|
|
||||||
},
|
},
|
||||||
lazyOptions
|
|
||||||
)
|
-- Extras.
|
||||||
|
{ import = 'lazyvim.plugins.extras.coding.luasnip' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.coding.mini-comment' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.coding.mini-surround' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.coding.neogen' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.coding.yanky' },
|
||||||
|
|
||||||
|
{ import = 'lazyvim.plugins.extras.editor.aerial' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.editor.dial' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.editor.navic' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.editor.neo-tree' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.editor.refactoring' },
|
||||||
|
|
||||||
|
{ import = 'lazyvim.plugins.extras.formatting.biome' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.formatting.prettier' },
|
||||||
|
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.docker' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.git' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.go' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.helm' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.json' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.markdown' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.nix' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.nushell' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.php' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.python' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.ruby' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.sql' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.tailwind' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.terraform' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.toml' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.typescript' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.vue' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.lang.yaml' },
|
||||||
|
|
||||||
|
{ import = 'lazyvim.plugins.extras.linting.eslint' },
|
||||||
|
|
||||||
|
{ import = 'lazyvim.plugins.extras.test.core' },
|
||||||
|
|
||||||
|
{ import = 'lazyvim.plugins.extras.ui.mini-animate' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.ui.treesitter-context' },
|
||||||
|
|
||||||
|
{ import = 'lazyvim.plugins.extras.util.dot' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.util.mini-hipatterns' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.util.octo' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.util.project' },
|
||||||
|
{ import = 'lazyvim.plugins.extras.util.rest' },
|
||||||
|
|
||||||
|
-- These need to be after extras to prevent extras from overwriting them.
|
||||||
|
|
||||||
|
-- Disable mason.nvim while using nix.
|
||||||
|
-- Precompiled binaries do not agree with nixos, and we can just make nix
|
||||||
|
-- install this stuff for us.
|
||||||
|
{ 'williamboman/mason-lspconfig.nvim', enabled = require('nixCatsUtils').lazyAdd(true, false) },
|
||||||
|
{ 'williamboman/mason.nvim', enabled = require('nixCatsUtils').lazyAdd(true, false) },
|
||||||
|
|
||||||
|
{
|
||||||
|
'nvim-treesitter/nvim-treesitter',
|
||||||
|
build = require('nixCatsUtils').lazyAdd ':TSUpdate',
|
||||||
|
opts_extend = require('nixCatsUtils').lazyAdd(nil, false),
|
||||||
|
opts = {
|
||||||
|
-- Nix already ensured they were installed, and we would need to change
|
||||||
|
-- the parser_install_dir if we wanted to use it instead.
|
||||||
|
-- So we just disable install and do it via nix.
|
||||||
|
ensure_installed = require('nixCatsUtils').lazyAdd({ 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc' }, false),
|
||||||
|
auto_install = require('nixCatsUtils').lazyAdd(true, false),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
-- import/override with your plugins
|
||||||
|
{ import = 'plugins' },
|
||||||
|
}, lazyOptions)
|
||||||
|
|
|
@ -3,7 +3,6 @@ return {
|
||||||
'mfussenegger/nvim-lint',
|
'mfussenegger/nvim-lint',
|
||||||
opts = {
|
opts = {
|
||||||
linters_by_ft = {
|
linters_by_ft = {
|
||||||
['*'] = { 'codespell' },
|
|
||||||
bash = { 'shellcheck' },
|
bash = { 'shellcheck' },
|
||||||
css = { 'stylelint' },
|
css = { 'stylelint' },
|
||||||
scss = { 'stylelint' },
|
scss = { 'stylelint' },
|
||||||
|
|
|
@ -44,19 +44,6 @@ return {
|
||||||
somesass_ls = {},
|
somesass_ls = {},
|
||||||
statix = {},
|
statix = {},
|
||||||
stylelint_lsp = {},
|
stylelint_lsp = {},
|
||||||
|
|
||||||
-- Fix for nix installation of vue-language-server.
|
|
||||||
vtsls = {
|
|
||||||
settings = {
|
|
||||||
vtsls = {
|
|
||||||
tsserver = {
|
|
||||||
globalPlugins = {
|
|
||||||
location = nixCats.extra('vue-ls-path'),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue