mirror of
https://github.com/isabelroses/nvim.git
synced 2025-04-09 13:29:34 +00:00
feat: tailwind-tools
This commit is contained in:
parent
99d1fe76ff
commit
24ee5906d7
5 changed files with 27 additions and 10 deletions
|
@ -10,10 +10,6 @@
|
|||
git
|
||||
gh
|
||||
ripgrep
|
||||
wakatime
|
||||
lazygit
|
||||
direnv
|
||||
silicon
|
||||
|
||||
# python
|
||||
ruff
|
||||
|
@ -47,9 +43,6 @@
|
|||
statix
|
||||
deadnix
|
||||
|
||||
# go
|
||||
repos.nekowinston.gonvim-tools
|
||||
|
||||
# etc
|
||||
emmet-ls
|
||||
ltex-ls
|
||||
|
|
|
@ -176,6 +176,10 @@ src.git = "https://github.com/mrcjkb/rustaceanvim"
|
|||
fetch.github = "b0o/schemastore.nvim"
|
||||
src.git = "https://github.com/b0o/schemastore.nvim"
|
||||
|
||||
[tailwind-tools]
|
||||
fetch.github = "luckasRanarison/tailwind-tools.nvim"
|
||||
src.git = "https://github.com/luckasRanarison/tailwind-tools.nvim"
|
||||
|
||||
[telescope]
|
||||
fetch.github = "nvim-telescope/telescope.nvim"
|
||||
src.git = "https://github.com/nvim-telescope/telescope.nvim"
|
||||
|
|
|
@ -10,7 +10,7 @@ return function()
|
|||
type = "text",
|
||||
val = line,
|
||||
opts = {
|
||||
hl = "HeaderGradient" .. i,
|
||||
hl = "AlphaHeaderGradient" .. i,
|
||||
shrink_margin = false,
|
||||
position = "center",
|
||||
},
|
||||
|
|
|
@ -216,6 +216,12 @@ in rec {
|
|||
};
|
||||
};
|
||||
|
||||
# tailwind but better
|
||||
tailwind-tools = {
|
||||
src = srcs.tailwind-tools;
|
||||
config = ./tailwind.lua;
|
||||
};
|
||||
|
||||
nvim-lspconfig = {
|
||||
src = srcs.nvim-lspconfig;
|
||||
config = ./lsp.lua;
|
||||
|
@ -260,6 +266,7 @@ in rec {
|
|||
|
||||
go-nvim = {
|
||||
src = srcs.go-nvim;
|
||||
paths = [pkgs.repos.nekowinston.gonvim-tools];
|
||||
dependencies = {
|
||||
guihua-lua.src = srcs.guihua-lua;
|
||||
};
|
||||
|
@ -274,12 +281,21 @@ in rec {
|
|||
};
|
||||
|
||||
# misc
|
||||
wakatime.src = pkgs.vimPlugins.vim-wakatime; # track my time coding
|
||||
direnv.src = srcs.direnv-vim; # direnv integration
|
||||
undotree.src = srcs.undotree; # undo tree
|
||||
|
||||
wakatime = {
|
||||
src = pkgs.vimPlugins.vim-wakatime; # track my time coding
|
||||
paths = [pkgs.wakatime];
|
||||
};
|
||||
|
||||
direnv = {
|
||||
src = srcs.direnv-vim; # direnv integration
|
||||
paths = [pkgs.direnv];
|
||||
};
|
||||
|
||||
nvim-silicon = {
|
||||
src = srcs.nvim-silicon;
|
||||
paths = [pkgs.silicon];
|
||||
config = ./silicon.lua;
|
||||
};
|
||||
|
||||
|
@ -287,6 +303,7 @@ in rec {
|
|||
lazygit = {
|
||||
src = srcs.lazygit;
|
||||
dependencies = {inherit plenary;};
|
||||
paths = [pkgs.lazygit];
|
||||
};
|
||||
|
||||
# deps
|
||||
|
|
3
plugins/tailwind.lua
Normal file
3
plugins/tailwind.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
return function()
|
||||
require("tailwind-tools").setup()
|
||||
end
|
Loading…
Add table
Reference in a new issue