Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nifoc committed Jul 31, 2023
1 parent 32ce2ca commit ba4c933
Show file tree
Hide file tree
Showing 6 changed files with 164 additions and 49 deletions.
161 changes: 148 additions & 13 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 1 addition & 36 deletions home/config/nvim/plugins/treesitter.fnl
Original file line number Diff line number Diff line change
@@ -1,40 +1,5 @@
(let [treesitter (require :nvim-treesitter)
treesitter-config (require :nvim-treesitter.configs)
treesitter-parsers (require :nvim-treesitter.parsers)
(let [treesitter-config (require :nvim-treesitter.configs)
nifoc-treesitter (require :nifoc.treesitter)
install-parsers [:bash
:comment
:css
:dockerfile
:eex
:elixir
:erlang
:fennel
:fish
:heex
:html
:http
:java
:javascript
:jsdoc
:json
:lua
:make
:markdown
:markdown_inline
:nix
:query
:regex
:ruby
:scss
:sql
:svelte
:toml
:tsx
:typescript
:vim
:yaml]
rainbow-parsers [:css :fennel :json :query :yaml]
disable-parsers []]
(nifoc-treesitter.setup)
(treesitter-config.setup {:ensure_installed []
Expand Down
1 change: 1 addition & 0 deletions home/hosts/Styx.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
glow
hexyl
hyperfine
just
lnav
mtr
nix-tree
Expand Down
2 changes: 2 additions & 0 deletions home/programs/nvim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@ in
type = "fennel";
}

vim-just

{
plugin = rainbow-delimiters-nvim;
config = builtins.readFile ../../config/nvim/plugins/rainbow-delimiters.fnl;
Expand Down
11 changes: 11 additions & 0 deletions home/programs/nvim/plugins.nix
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,17 @@ in
fetchSubmodules = false;
};
};
vim-just = buildVimPluginFrom2Nix {
pname = "vim-just";
version = "2023-07-30";
src = fetchFromGitHub {
owner = "NoahTheDuke";
repo = "vim-just";
rev = "9129b096a6b43e0a47e405cc7b3fb55bc0e31c42";
sha256 = "04sh6xdnmb89gw31wjd1zd4jwl4cwb4731qpkgz59rh5cdiv27qr";
fetchSubmodules = false;
};
};
rainbow-delimiters-nvim = buildVimPluginFrom2Nix {
pname = "rainbow-delimiters.nvim";
version = "2023-07-30";
Expand Down
1 change: 1 addition & 0 deletions home/programs/nvim/plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- src: Mofiqul/dracula.nvim
# Syntax
- src: nvim-treesitter/nvim-treesitter
- src: NoahTheDuke/vim-just
- src: HiPhish/rainbow-delimiters.nvim
- src: nvim-treesitter/playground
# Telescope
Expand Down

0 comments on commit ba4c933

Please sign in to comment.