mirror of
https://github.com/isabelroses/nvim.git
synced 2025-04-04 11:09:30 +00:00
refactor: now we are on nix
This commit is contained in:
parent
1489357a98
commit
a19a129649
67 changed files with 16892 additions and 251 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
|||
use flake --accept-flake-config
|
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
* text=auto
|
||||
**/_sources/**/* linguist-generated -diff
|
13
.github/README.md
vendored
Normal file
13
.github/README.md
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
## Nvim conf
|
||||
|
||||
My personal neovim config
|
||||
|
||||
Run via nix:
|
||||
|
||||
```sh
|
||||
nix run github:isabelroses/nvim
|
||||
```
|
||||
|
||||
### Thanks to
|
||||
- [nekowinston](https://github.com/nekowinston/neovim.drv)
|
||||
- [notashelf](https://github.com/NotAShelf/neovim-flake)
|
7
.github/dependabot.yml
vendored
Normal file
7
.github/dependabot.yml
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: github-actions
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: weekly
|
||||
time: "03:00"
|
49
.github/workflows/build.yml
vendored
Normal file
49
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,49 @@
|
|||
name: Build and populate cache
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "0 3 * * 3" # 03:00 on Wednesday, this is beacuse we want to update 1hr after the inputs update
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
package:
|
||||
- default
|
||||
- neovide
|
||||
- nvim-treesitter
|
||||
- telescope-fzf-native
|
||||
- markdown-preview
|
||||
|
||||
steps:
|
||||
- name: Maximize build space
|
||||
uses: easimon/maximize-build-space@v10
|
||||
with:
|
||||
overprovision-lvm: true
|
||||
remove-android: true
|
||||
remove-dotnet: true
|
||||
remove-haskell: true
|
||||
remove-codeql: true
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install Nix
|
||||
uses: DeterminateSystems/nix-installer-action@main
|
||||
with:
|
||||
logger: pretty
|
||||
|
||||
- name: Magic Nix Cache
|
||||
uses: DeterminateSystems/magic-nix-cache-action@main
|
||||
|
||||
- name: Setup cachix
|
||||
uses: cachix/cachix-action@v13
|
||||
with:
|
||||
name: isabelroses
|
||||
signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
|
||||
authToken: "${{ secrets.CACHIX_TOKEN }}"
|
||||
|
||||
- name: Build from the matrix
|
||||
run: nix build -L .#${{ matrix.package }}
|
36
.github/workflows/update.yml
vendored
Normal file
36
.github/workflows/update.yml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
name: Update Flake Inputs
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "0 2 * * 3" # 02:00 on Wednesday
|
||||
|
||||
jobs:
|
||||
update-lockfile:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4.1.0
|
||||
|
||||
- name: Install Nix
|
||||
uses: nixbuild/nix-quick-install-action@v26
|
||||
|
||||
- name: Update Sources
|
||||
run: |
|
||||
nix run github:berberman/nvfetcher
|
||||
pushd pkgs/nvim-treesitter
|
||||
nix run github:berberman/nvfetcher
|
||||
popd
|
||||
|
||||
- name: Update Lockfile
|
||||
uses: DeterminateSystems/update-flake-lock@main
|
||||
id: update
|
||||
with:
|
||||
pr-title: "chore(deps): update inputs"
|
||||
commit-msg: "chore(deps): update inputs"
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Merge Changes
|
||||
run: gh pr merge ${{ steps.update.outputs.pull-request-number }} --squash --delete-branch
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
12
.gitignore
vendored
12
.gitignore
vendored
|
@ -1,9 +1,3 @@
|
|||
tt.*
|
||||
.tests
|
||||
doc/tags
|
||||
debug
|
||||
.repro
|
||||
foo.*
|
||||
*.log
|
||||
data
|
||||
lazy-lock.json
|
||||
result
|
||||
.pre-commit-config.yaml
|
||||
.devenv/
|
||||
|
|
5
.luarc.json
Normal file
5
.luarc.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"Lua.runtime.version": "Lua 5.1",
|
||||
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
|
||||
"workspace.checkThirdParty": false
|
||||
}
|
10
.neoconf.json
Normal file
10
.neoconf.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"neodev": {
|
||||
"library": {
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
"lspconfig": {
|
||||
"sumneko_lua": {}
|
||||
}
|
||||
}
|
22
LICENSE
Normal file
22
LICENSE
Normal file
|
@ -0,0 +1,22 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2023 isabelroses
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
1529
_sources/generated.json
generated
Normal file
1529
_sources/generated.json
generated
Normal file
File diff suppressed because it is too large
Load diff
922
_sources/generated.nix
generated
Normal file
922
_sources/generated.nix
generated
Normal file
|
@ -0,0 +1,922 @@
|
|||
# This file was generated by nvfetcher, please do not modify it manually.
|
||||
{ fetchgit, fetchurl, fetchFromGitHub, dockerTools }:
|
||||
{
|
||||
alpha-nvim = {
|
||||
pname = "alpha-nvim";
|
||||
version = "29074eeb869a6cbac9ce1fbbd04f5f5940311b32";
|
||||
src = fetchFromGitHub {
|
||||
owner = "goolord";
|
||||
repo = "alpha-nvim";
|
||||
rev = "29074eeb869a6cbac9ce1fbbd04f5f5940311b32";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-R0Sjkhzn1Rueptcxnu69UataPWAnZnbwqRXoEHIivo4=";
|
||||
};
|
||||
date = "2023-11-28";
|
||||
};
|
||||
asyncrun-vim = {
|
||||
pname = "asyncrun-vim";
|
||||
version = "61cc3081963a12048e00e89f8cedc8bd1cb83b8c";
|
||||
src = fetchFromGitHub {
|
||||
owner = "skywind3000";
|
||||
repo = "asyncrun.vim";
|
||||
rev = "61cc3081963a12048e00e89f8cedc8bd1cb83b8c";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-8xMsxQ/aVvTpI0R7gEty3e7+8v9R9YJEHNwbBcGcBtE=";
|
||||
};
|
||||
date = "2023-09-26";
|
||||
};
|
||||
asynctasks-vim = {
|
||||
pname = "asynctasks-vim";
|
||||
version = "7b77b195a4297d3e4c9dde01c20aa6be17e3fcf3";
|
||||
src = fetchFromGitHub {
|
||||
owner = "skywind3000";
|
||||
repo = "asynctasks.vim";
|
||||
rev = "7b77b195a4297d3e4c9dde01c20aa6be17e3fcf3";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-FJjBAvjR89sOU+OKhL/ZwJ/AKmQjDdeir9K1G2aFbC8=";
|
||||
};
|
||||
date = "2023-09-21";
|
||||
};
|
||||
bufferline = {
|
||||
pname = "bufferline";
|
||||
version = "ac788fbc493839c1e76daa8d119934b715fdb90e";
|
||||
src = fetchFromGitHub {
|
||||
owner = "akinsho";
|
||||
repo = "bufferline.nvim";
|
||||
rev = "ac788fbc493839c1e76daa8d119934b715fdb90e";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-bGfngPeXDkPXw19cDf+5tp2znucJOqelURiKoQH6yH8=";
|
||||
};
|
||||
date = "2023-12-08";
|
||||
};
|
||||
catppuccin = {
|
||||
pname = "catppuccin";
|
||||
version = "64dc309bc157779691be38bbfc5123584e0a4a85";
|
||||
src = fetchFromGitHub {
|
||||
owner = "catppuccin";
|
||||
repo = "nvim";
|
||||
rev = "64dc309bc157779691be38bbfc5123584e0a4a85";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-YxLvBzXMioYKArXjerSslLdoAX0QPopYrWfOleX0pNo=";
|
||||
};
|
||||
date = "2023-12-08";
|
||||
};
|
||||
cmp-buffer = {
|
||||
pname = "cmp-buffer";
|
||||
version = "3022dbc9166796b644a841a02de8dd1cc1d311fa";
|
||||
src = fetchFromGitHub {
|
||||
owner = "hrsh7th";
|
||||
repo = "cmp-buffer";
|
||||
rev = "3022dbc9166796b644a841a02de8dd1cc1d311fa";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-dG4U7MtnXThoa/PD+qFtCt76MQ14V1wX8GMYcvxEnbM=";
|
||||
};
|
||||
date = "2022-08-10";
|
||||
};
|
||||
cmp-cmdline = {
|
||||
pname = "cmp-cmdline";
|
||||
version = "8ee981b4a91f536f52add291594e89fb6645e451";
|
||||
src = fetchFromGitHub {
|
||||
owner = "hrsh7th";
|
||||
repo = "cmp-cmdline";
|
||||
rev = "8ee981b4a91f536f52add291594e89fb6645e451";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-W8v/XhPjbvKSwCrfOAPihO2N9PEVnH5Cp/Fa25lNRw4=";
|
||||
};
|
||||
date = "2023-06-09";
|
||||
};
|
||||
cmp-git = {
|
||||
pname = "cmp-git";
|
||||
version = "f900a4cf117300fdc3ba31d26f8b6223ccd9c574";
|
||||
src = fetchFromGitHub {
|
||||
owner = "petertriho";
|
||||
repo = "cmp-git";
|
||||
rev = "f900a4cf117300fdc3ba31d26f8b6223ccd9c574";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-McIYDGXu+tSaY/U6eu1XouSHto/mSpJ/i4Z4UKYa+mk=";
|
||||
};
|
||||
date = "2023-05-30";
|
||||
};
|
||||
cmp-nvim-lsp = {
|
||||
pname = "cmp-nvim-lsp";
|
||||
version = "44b16d11215dce86f253ce0c30949813c0a90765";
|
||||
src = fetchFromGitHub {
|
||||
owner = "hrsh7th";
|
||||
repo = "cmp-nvim-lsp";
|
||||
rev = "44b16d11215dce86f253ce0c30949813c0a90765";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-mU0soCz79erJXMMqD/FyrJZ0mu2n6fE0deymPzQlxts=";
|
||||
};
|
||||
date = "2023-06-23";
|
||||
};
|
||||
cmp-path = {
|
||||
pname = "cmp-path";
|
||||
version = "91ff86cd9c29299a64f968ebb45846c485725f23";
|
||||
src = fetchFromGitHub {
|
||||
owner = "hrsh7th";
|
||||
repo = "cmp-path";
|
||||
rev = "91ff86cd9c29299a64f968ebb45846c485725f23";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-thppiiV3wjIaZnAXmsh7j3DUc6ceSCvGzviwFUnoPaI=";
|
||||
};
|
||||
date = "2022-10-03";
|
||||
};
|
||||
cmp_luasnip = {
|
||||
pname = "cmp_luasnip";
|
||||
version = "05a9ab28b53f71d1aece421ef32fee2cb857a843";
|
||||
src = fetchFromGitHub {
|
||||
owner = "saadparwaiz1";
|
||||
repo = "cmp_luasnip";
|
||||
rev = "05a9ab28b53f71d1aece421ef32fee2cb857a843";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-nUJJl2zyK/oSwz5RzI9j3gf9zpDfCImCYbPbVsyXgz8=";
|
||||
};
|
||||
date = "2023-10-09";
|
||||
};
|
||||
color-picker = {
|
||||
pname = "color-picker";
|
||||
version = "06cb5f853535dea529a523e9a0e8884cdf9eba4d";
|
||||
src = fetchFromGitHub {
|
||||
owner = "ziontee113";
|
||||
repo = "color-picker.nvim";
|
||||
rev = "06cb5f853535dea529a523e9a0e8884cdf9eba4d";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-a1hpKKvBG8ey/+gbfFEK8CPawEK9EdcQbnIfi7X0C9I=";
|
||||
};
|
||||
date = "2023-05-21";
|
||||
};
|
||||
comment = {
|
||||
pname = "comment";
|
||||
version = "0236521ea582747b58869cb72f70ccfa967d2e89";
|
||||
src = fetchFromGitHub {
|
||||
owner = "numtostr";
|
||||
repo = "comment.nvim";
|
||||
rev = "0236521ea582747b58869cb72f70ccfa967d2e89";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-+dF1ZombrlO6nQggufSb0igXW5zwU++o0W/5ZA07cdc=";
|
||||
};
|
||||
date = "2023-08-07";
|
||||
};
|
||||
copilot-cmp = {
|
||||
pname = "copilot-cmp";
|
||||
version = "72fbaa03695779f8349be3ac54fa8bd77eed3ee3";
|
||||
src = fetchFromGitHub {
|
||||
owner = "zbirenbaum";
|
||||
repo = "copilot-cmp";
|
||||
rev = "72fbaa03695779f8349be3ac54fa8bd77eed3ee3";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-srgNohm/aJpswNJ5+T7p+zi9Jinp9e5FA8/wdk6VRiY=";
|
||||
};
|
||||
date = "2023-09-09";
|
||||
};
|
||||
copilot-lua = {
|
||||
pname = "copilot-lua";
|
||||
version = "38a41d0d78f8823cc144c99784528b9a68bdd608";
|
||||
src = fetchFromGitHub {
|
||||
owner = "zbirenbaum";
|
||||
repo = "copilot.lua";
|
||||
rev = "38a41d0d78f8823cc144c99784528b9a68bdd608";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-Usk303CSrbnT78+TKbKw5i9AyEVvPMDPvChpEFRnYhc=";
|
||||
};
|
||||
date = "2023-12-01";
|
||||
};
|
||||
crates = {
|
||||
pname = "crates";
|
||||
version = "b8ea20fda2e1029fbbb1bae7a9eab35c84037ca0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "saecki";
|
||||
repo = "crates.nvim";
|
||||
rev = "b8ea20fda2e1029fbbb1bae7a9eab35c84037ca0";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-XubmNjA8edFFsTEyLZ/kYpPKcBQvXtDNNYg7GyXFVqU=";
|
||||
};
|
||||
date = "2023-12-04";
|
||||
};
|
||||
diffview = {
|
||||
pname = "diffview";
|
||||
version = "3dc498c9777fe79156f3d32dddd483b8b3dbd95f";
|
||||
src = fetchFromGitHub {
|
||||
owner = "sindrets";
|
||||
repo = "diffview.nvim";
|
||||
rev = "3dc498c9777fe79156f3d32dddd483b8b3dbd95f";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-3EdnBUka9Rh5Brl6TWpN6GlD9z32mmY3Ip+wyiKob/8=";
|
||||
};
|
||||
date = "2023-11-20";
|
||||
};
|
||||
dressing = {
|
||||
pname = "dressing";
|
||||
version = "8b7ae53d7f04f33be3439a441db8071c96092d19";
|
||||
src = fetchFromGitHub {
|
||||
owner = "stevearc";
|
||||
repo = "dressing.nvim";
|
||||
rev = "8b7ae53d7f04f33be3439a441db8071c96092d19";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-yza3h2IwgWppKmHLhguWfp1bZO0m94x3+G4lF/dVQ74=";
|
||||
};
|
||||
date = "2023-11-30";
|
||||
};
|
||||
editorconfig = {
|
||||
pname = "editorconfig";
|
||||
version = "5b9e303e1d6f7abfe616ce4cc8d3fffc554790bf";
|
||||
src = fetchFromGitHub {
|
||||
owner = "gpanders";
|
||||
repo = "editorconfig.nvim";
|
||||
rev = "5b9e303e1d6f7abfe616ce4cc8d3fffc554790bf";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-pR57tITdVGF4luEmmRYv/XFb35E3KDfcgYRijkPAc+Y=";
|
||||
};
|
||||
date = "2023-01-10";
|
||||
};
|
||||
fidget = {
|
||||
pname = "fidget";
|
||||
version = "2f7c08f45639a64a5c0abcf67321d52c3f499ae6";
|
||||
src = fetchFromGitHub {
|
||||
owner = "j-hui";
|
||||
repo = "fidget.nvim";
|
||||
rev = "2f7c08f45639a64a5c0abcf67321d52c3f499ae6";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-8Gl2Ck4YJGReSEq1Xeh1dpdRq4eImmrxvIHrfxdem3Q=";
|
||||
};
|
||||
date = "2023-11-09";
|
||||
};
|
||||
friendly-snippets = {
|
||||
pname = "friendly-snippets";
|
||||
version = "53d3df271d031c405255e99410628c26a8f0d2b0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "rafamadriz";
|
||||
repo = "friendly-snippets";
|
||||
rev = "53d3df271d031c405255e99410628c26a8f0d2b0";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-6a1JMW+iZjqopnzFhC7vMamnW2iWhMHqi1Xs45d+7x8=";
|
||||
};
|
||||
date = "2023-11-27";
|
||||
};
|
||||
gitsigns = {
|
||||
pname = "gitsigns";
|
||||
version = "87640f5a877b18bdd49884dbcac220fed924b867";
|
||||
src = fetchFromGitHub {
|
||||
owner = "lewis6991";
|
||||
repo = "gitsigns.nvim";
|
||||
rev = "87640f5a877b18bdd49884dbcac220fed924b867";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-KwCqzreh8TsFpsiO9FQT4W0C8zdhIZHEWznkmhXUF44=";
|
||||
};
|
||||
date = "2023-12-08";
|
||||
};
|
||||
glance = {
|
||||
pname = "glance";
|
||||
version = "8ed5cf3b3b1231ea696d88c9efd977027429d869";
|
||||
src = fetchFromGitHub {
|
||||
owner = "dnlhc";
|
||||
repo = "glance.nvim";
|
||||
rev = "8ed5cf3b3b1231ea696d88c9efd977027429d869";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-oyfZUQiVGLSOkMnJF+V+IF4mGUiKbAN4YXq3gwxOVmQ=";
|
||||
};
|
||||
date = "2023-08-26";
|
||||
};
|
||||
indent-blankline = {
|
||||
pname = "indent-blankline";
|
||||
version = "7206c77cb931f79885fc47f88ae18f99148392eb";
|
||||
src = fetchFromGitHub {
|
||||
owner = "lukas-reineke";
|
||||
repo = "indent-blankline.nvim";
|
||||
rev = "7206c77cb931f79885fc47f88ae18f99148392eb";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-23VBlez6V3iY5fipIwadkXHwU7HIaygHLbShDKlMVkY=";
|
||||
};
|
||||
date = "2023-12-07";
|
||||
};
|
||||
lazy = {
|
||||
pname = "lazy";
|
||||
version = "96584866b9c5e998cbae300594d0ccfd0c464627";
|
||||
src = fetchFromGitHub {
|
||||
owner = "folke";
|
||||
repo = "lazy.nvim";
|
||||
rev = "96584866b9c5e998cbae300594d0ccfd0c464627";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-adBcg8iSSO5eRLuZJnmU6m7IiRJXjoMDzN6yH2JrQIc=";
|
||||
};
|
||||
date = "2023-11-04";
|
||||
};
|
||||
lazygit = {
|
||||
pname = "lazygit";
|
||||
version = "de35012036d43bca03628d40d083f7c02a4cda3f";
|
||||
src = fetchFromGitHub {
|
||||
owner = "kdheepak";
|
||||
repo = "lazygit.nvim";
|
||||
rev = "de35012036d43bca03628d40d083f7c02a4cda3f";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-dJnCYFTdpXPN3MdACO8+JMF6EZPpWHSbB1XGdxCh7PE=";
|
||||
};
|
||||
date = "2023-09-26";
|
||||
};
|
||||
lsp-status = {
|
||||
pname = "lsp-status";
|
||||
version = "54f48eb5017632d81d0fd40112065f1d062d0629";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-lua";
|
||||
repo = "lsp-status.nvim";
|
||||
rev = "54f48eb5017632d81d0fd40112065f1d062d0629";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-gmLeVnDyL8Zf5ZG92tP3mb/LAt438BxFtAi/Xax2zLI=";
|
||||
};
|
||||
date = "2022-08-03";
|
||||
};
|
||||
lspkind = {
|
||||
pname = "lspkind";
|
||||
version = "57610d5ab560c073c465d6faf0c19f200cb67e6e";
|
||||
src = fetchFromGitHub {
|
||||
owner = "onsails";
|
||||
repo = "lspkind.nvim";
|
||||
rev = "57610d5ab560c073c465d6faf0c19f200cb67e6e";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-S+qZm51hw/cRujIfHV/1x1fYyCKI4XQ0utSL8uy4l6I=";
|
||||
};
|
||||
date = "2023-05-05";
|
||||
};
|
||||
ltex-extra = {
|
||||
pname = "ltex-extra";
|
||||
version = "9bed99b2b8488cc2daf66c76d2e0cf051ee80d13";
|
||||
src = fetchFromGitHub {
|
||||
owner = "barreiroleo";
|
||||
repo = "ltex-extra.nvim";
|
||||
rev = "9bed99b2b8488cc2daf66c76d2e0cf051ee80d13";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-LzgAICiGuaHfYkQq7/4bRJ1M5KopFBcSTVTHrb3rm+w=";
|
||||
};
|
||||
date = "2023-07-28";
|
||||
};
|
||||
lualine = {
|
||||
pname = "lualine";
|
||||
version = "2248ef254d0a1488a72041cfb45ca9caada6d994";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-lualine";
|
||||
repo = "lualine.nvim";
|
||||
rev = "2248ef254d0a1488a72041cfb45ca9caada6d994";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-jV+6mV0dyuhiHGei1UqE2r2GoiKJLtdZI2AMNexbi7E=";
|
||||
};
|
||||
date = "2023-10-20";
|
||||
};
|
||||
luasnip = {
|
||||
pname = "luasnip";
|
||||
version = "954c81b53989097faaff0fabc11c29575288c3e1";
|
||||
src = fetchFromGitHub {
|
||||
owner = "L3MON4D3";
|
||||
repo = "LuaSnip";
|
||||
rev = "954c81b53989097faaff0fabc11c29575288c3e1";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-drF5AYG0hBUUbdFT1imX65p40x+I2vRklTj75yM+uk4=";
|
||||
};
|
||||
date = "2023-12-05";
|
||||
};
|
||||
markdown-preview = {
|
||||
pname = "markdown-preview";
|
||||
version = "a923f5fc5ba36a3b17e289dc35dc17f66d0548ee";
|
||||
src = fetchFromGitHub {
|
||||
owner = "iamcco";
|
||||
repo = "markdown-preview.nvim";
|
||||
rev = "a923f5fc5ba36a3b17e289dc35dc17f66d0548ee";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-TBXdG/Ih5DusAYZJyn37zVqHcMD85VkjrCoLyTo/KBg=";
|
||||
};
|
||||
"app/yarn.lock" = builtins.readFile ./markdown-preview-a923f5fc5ba36a3b17e289dc35dc17f66d0548ee/app/yarn.lock;
|
||||
date = "2023-10-17";
|
||||
};
|
||||
neoconf = {
|
||||
pname = "neoconf";
|
||||
version = "64437787dba70fce50dad7bfbb97d184c5bc340f";
|
||||
src = fetchFromGitHub {
|
||||
owner = "folke";
|
||||
repo = "neoconf.nvim";
|
||||
rev = "64437787dba70fce50dad7bfbb97d184c5bc340f";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-bFnXKttuinBvvJonPPz+8J3+kYgcy7bZvposEKyVnK8=";
|
||||
};
|
||||
date = "2023-11-04";
|
||||
};
|
||||
neodev = {
|
||||
pname = "neodev";
|
||||
version = "c4ce017bd4bacf60bf59330cec9e93c5d5e104a6";
|
||||
src = fetchFromGitHub {
|
||||
owner = "folke";
|
||||
repo = "neodev.nvim";
|
||||
rev = "c4ce017bd4bacf60bf59330cec9e93c5d5e104a6";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-lAeqFZjkafySZmN3vBa6H1XSEUc28UTQ72ilCkghH6M=";
|
||||
};
|
||||
date = "2023-12-07";
|
||||
};
|
||||
neorepl = {
|
||||
pname = "neorepl";
|
||||
version = "bc819bb42edca9c4a6b6e5d00f09f94a49c3b735";
|
||||
src = fetchFromGitHub {
|
||||
owner = "ii14";
|
||||
repo = "neorepl.nvim";
|
||||
rev = "bc819bb42edca9c4a6b6e5d00f09f94a49c3b735";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-OkePRGuaLWE+NRdONAh14PijUF08HsYf9rvwi58fzRU=";
|
||||
};
|
||||
date = "2022-11-07";
|
||||
};
|
||||
neovide = {
|
||||
pname = "neovide";
|
||||
version = "0.11.2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "neovide";
|
||||
repo = "neovide";
|
||||
rev = "0.11.2";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-JCSFG7W4I1uXsVM7J059tHYq/DB16AZfGjsG0UvfctE=";
|
||||
};
|
||||
cargoLock."Cargo.lock" = {
|
||||
lockFile = ./neovide-0.11.2/Cargo.lock;
|
||||
outputHashes = {
|
||||
|
||||
};
|
||||
};
|
||||
};
|
||||
neovim-session-manager = {
|
||||
pname = "neovim-session-manager";
|
||||
version = "68dde355a4304d83b40cf073f53915604bdd8e70";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Shatur";
|
||||
repo = "neovim-session-manager";
|
||||
rev = "68dde355a4304d83b40cf073f53915604bdd8e70";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-WOJQ6RIibOby+Pmzr6kQxcT2NCGrq1roWkh4QKJECks=";
|
||||
};
|
||||
date = "2023-10-09";
|
||||
};
|
||||
null-ls = {
|
||||
pname = "null-ls";
|
||||
version = "0010ea927ab7c09ef0ce9bf28c2b573fc302f5a7";
|
||||
src = fetchFromGitHub {
|
||||
owner = "jose-elias-alvarez";
|
||||
repo = "null-ls.nvim";
|
||||
rev = "0010ea927ab7c09ef0ce9bf28c2b573fc302f5a7";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-cWA0rzkOp/ekVKaFee7iea1lhnqKtWUIU+fW5M950wI=";
|
||||
};
|
||||
date = "2023-08-11";
|
||||
};
|
||||
nvim-autopairs = {
|
||||
pname = "nvim-autopairs";
|
||||
version = "0f04d78619cce9a5af4f355968040f7d675854a1";
|
||||
src = fetchFromGitHub {
|
||||
owner = "windwp";
|
||||
repo = "nvim-autopairs";
|
||||
rev = "0f04d78619cce9a5af4f355968040f7d675854a1";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-M6s05RH2tiIAfgc8wJVtBhdPyDuy5fX6bhoL0vuKV0w=";
|
||||
};
|
||||
date = "2023-10-21";
|
||||
};
|
||||
nvim-cmp = {
|
||||
pname = "nvim-cmp";
|
||||
version = "0b751f6beef40fd47375eaf53d3057e0bfa317e4";
|
||||
src = fetchFromGitHub {
|
||||
owner = "hrsh7th";
|
||||
repo = "nvim-cmp";
|
||||
rev = "0b751f6beef40fd47375eaf53d3057e0bfa317e4";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-auUHEjUDOaDkMI9loN6T+/whDDNzPl04bf+nqqLQ5+I=";
|
||||
};
|
||||
date = "2023-11-06";
|
||||
};
|
||||
nvim-colorizer-lua = {
|
||||
pname = "nvim-colorizer-lua";
|
||||
version = "dde3084106a70b9a79d48f426f6d6fec6fd203f7";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvchad";
|
||||
repo = "nvim-colorizer.lua";
|
||||
rev = "dde3084106a70b9a79d48f426f6d6fec6fd203f7";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-hShQabr+UafsP+yicWkHycWLTbPhOpRpoa9oTMMVZ9o=";
|
||||
};
|
||||
date = "2023-02-27";
|
||||
};
|
||||
nvim-dap = {
|
||||
pname = "nvim-dap";
|
||||
version = "bbe2c6f3438542a37cc2141a8e385f7dfe07d87d";
|
||||
src = fetchFromGitHub {
|
||||
owner = "mfussenegger";
|
||||
repo = "nvim-dap";
|
||||
rev = "bbe2c6f3438542a37cc2141a8e385f7dfe07d87d";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-iDRIKQH9GSmYvHj4KRN+KrHeMpJUjmKlmIa1D6qlG6s=";
|
||||
};
|
||||
date = "2023-12-08";
|
||||
};
|
||||
nvim-dap-ui = {
|
||||
pname = "nvim-dap-ui";
|
||||
version = "34160a7ce6072ef332f350ae1d4a6a501daf0159";
|
||||
src = fetchFromGitHub {
|
||||
owner = "rcarriga";
|
||||
repo = "nvim-dap-ui";
|
||||
rev = "34160a7ce6072ef332f350ae1d4a6a501daf0159";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-IdWPzLpNH0fkubELr2uTI7UnB0Yaf/zCkF8WUWBtyaM=";
|
||||
};
|
||||
date = "2023-09-10";
|
||||
};
|
||||
nvim-dap-virtual-text = {
|
||||
pname = "nvim-dap-virtual-text";
|
||||
version = "57f1dbd0458dd84a286b27768c142e1567f3ce3b";
|
||||
src = fetchFromGitHub {
|
||||
owner = "theHamsta";
|
||||
repo = "nvim-dap-virtual-text";
|
||||
rev = "57f1dbd0458dd84a286b27768c142e1567f3ce3b";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-yzMRudA8Wag881ewzw82uXPzHoxaB6kAapPElKN6G6E=";
|
||||
};
|
||||
date = "2023-05-25";
|
||||
};
|
||||
nvim-lspconfig = {
|
||||
pname = "nvim-lspconfig";
|
||||
version = "511609ae0311abfcfaed3c398429a147e895ce2c";
|
||||
src = fetchFromGitHub {
|
||||
owner = "neovim";
|
||||
repo = "nvim-lspconfig";
|
||||
rev = "511609ae0311abfcfaed3c398429a147e895ce2c";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-4Ogx+58962qoph8iMyHBGEqoRARK5KQAYEaa1wsgdsw=";
|
||||
};
|
||||
date = "2023-12-08";
|
||||
};
|
||||
nvim-navic = {
|
||||
pname = "nvim-navic";
|
||||
version = "8649f694d3e76ee10c19255dece6411c29206a54";
|
||||
src = fetchFromGitHub {
|
||||
owner = "SmiteshP";
|
||||
repo = "nvim-navic";
|
||||
rev = "8649f694d3e76ee10c19255dece6411c29206a54";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-0p5n/V8Jlj9XyxV/fuMwsbQ7oV5m9H2GqZZEA/njxCQ=";
|
||||
};
|
||||
date = "2023-11-30";
|
||||
};
|
||||
nvim-notify = {
|
||||
pname = "nvim-notify";
|
||||
version = "e4a2022f4fec2d5ebc79afa612f96d8b11c627b3";
|
||||
src = fetchFromGitHub {
|
||||
owner = "rcarriga";
|
||||
repo = "nvim-notify";
|
||||
rev = "e4a2022f4fec2d5ebc79afa612f96d8b11c627b3";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-1tWvzE4x1lgldg6vAHCQy9XDMcxJ6G9bZPSG1pEn+qg=";
|
||||
};
|
||||
date = "2023-09-28";
|
||||
};
|
||||
nvim-spectre = {
|
||||
pname = "nvim-spectre";
|
||||
version = "a18a58015b46f02b4fe537ebfffd82e46110ff24";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-pack";
|
||||
repo = "nvim-spectre";
|
||||
rev = "a18a58015b46f02b4fe537ebfffd82e46110ff24";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-VuvocrlBtqezG5lFY/kSytpq2A/nLiitHu1DxC3Twmc=";
|
||||
};
|
||||
date = "2023-11-15";
|
||||
};
|
||||
nvim-surround = {
|
||||
pname = "nvim-surround";
|
||||
version = "633a0ab03159569a66b65671b0ffb1a6aed6cf18";
|
||||
src = fetchFromGitHub {
|
||||
owner = "kylechui";
|
||||
repo = "nvim-surround";
|
||||
rev = "633a0ab03159569a66b65671b0ffb1a6aed6cf18";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-ph4obOW+l+TGZp6B4R4ZZtjiFMKWKFKigV3aLLPhbGs=";
|
||||
};
|
||||
date = "2023-12-04";
|
||||
};
|
||||
nvim-tree-lua = {
|
||||
pname = "nvim-tree-lua";
|
||||
version = "27e66c2ea872d382e532956393be5879c960b59d";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-tree";
|
||||
repo = "nvim-tree.lua";
|
||||
rev = "27e66c2ea872d382e532956393be5879c960b59d";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-C3/qg9M8ZfUjdonVr2b/uCtPOWceKNLLkgA87vlI/u0=";
|
||||
};
|
||||
date = "2023-12-09";
|
||||
};
|
||||
nvim-treesitter = {
|
||||
pname = "nvim-treesitter";
|
||||
version = "1b5bbb54b385c4eae217113f72df5284bc3cc94b";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-treesitter";
|
||||
repo = "nvim-treesitter";
|
||||
rev = "1b5bbb54b385c4eae217113f72df5284bc3cc94b";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-n4pDZlmP2auGXyoYeJ5r2vYtQ2HiKvzcec+NI2xZPJY=";
|
||||
};
|
||||
date = "2023-12-09";
|
||||
};
|
||||
nvim-treesitter-context = {
|
||||
pname = "nvim-treesitter-context";
|
||||
version = "cfa8ee19ac9bae9b7fb2958eabe2b45b70c56ccb";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-treesitter";
|
||||
repo = "nvim-treesitter-context";
|
||||
rev = "cfa8ee19ac9bae9b7fb2958eabe2b45b70c56ccb";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-7HpUuim2vS3H4i1WYKWuV7v5qCtUVinQ1jPY6nBC4OM=";
|
||||
};
|
||||
date = "2023-12-08";
|
||||
};
|
||||
nvim-treesitter-textobjects = {
|
||||
pname = "nvim-treesitter-textobjects";
|
||||
version = "ec1c5bdb3d87ac971749fa6c7dbc2b14884f1f6a";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-treesitter";
|
||||
repo = "nvim-treesitter-textobjects";
|
||||
rev = "ec1c5bdb3d87ac971749fa6c7dbc2b14884f1f6a";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-tu/+yVIgetOYSGg2A+vFgBxh99ndcILVESgyNGHkrs0=";
|
||||
};
|
||||
date = "2023-12-01";
|
||||
};
|
||||
nvim-ts-autotag = {
|
||||
pname = "nvim-ts-autotag";
|
||||
version = "6be1192965df35f94b8ea6d323354f7dc7a557e4";
|
||||
src = fetchFromGitHub {
|
||||
owner = "windwp";
|
||||
repo = "nvim-ts-autotag";
|
||||
rev = "6be1192965df35f94b8ea6d323354f7dc7a557e4";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-4qTtXYA5HyG1sADV0wsiccO/G89qEoYPmlg8tTx7h8g=";
|
||||
};
|
||||
date = "2023-06-16";
|
||||
};
|
||||
nvim-web-devicons = {
|
||||
pname = "nvim-web-devicons";
|
||||
version = "8b2e5ef9eb8a717221bd96cb8422686d65a09ed5";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-tree";
|
||||
repo = "nvim-web-devicons";
|
||||
rev = "8b2e5ef9eb8a717221bd96cb8422686d65a09ed5";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-1Dfc8xbdI6rnUcYH2iqwzD4ZbpD42iZsRHa4cDKF+2g=";
|
||||
};
|
||||
date = "2023-12-09";
|
||||
};
|
||||
obsidian-nvim = {
|
||||
pname = "obsidian-nvim";
|
||||
version = "46fce1673983bdedd721946aa3340f7a4e1c8ccd";
|
||||
src = fetchFromGitHub {
|
||||
owner = "epwalsh";
|
||||
repo = "obsidian.nvim";
|
||||
rev = "46fce1673983bdedd721946aa3340f7a4e1c8ccd";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-aCzSIQI06QK5UC3hwvVChlIukhxeE7Jep/NDQD3fkV0=";
|
||||
};
|
||||
date = "2023-12-06";
|
||||
};
|
||||
playground = {
|
||||
pname = "playground";
|
||||
version = "ba48c6a62a280eefb7c85725b0915e021a1a0749";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-treesitter";
|
||||
repo = "playground";
|
||||
rev = "ba48c6a62a280eefb7c85725b0915e021a1a0749";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-gOQr61Y3bVa6EAb0P924X9SJmg9lOmGiLcFTMdgu8u0=";
|
||||
};
|
||||
date = "2023-09-15";
|
||||
};
|
||||
plenary = {
|
||||
pname = "plenary";
|
||||
version = "55d9fe89e33efd26f532ef20223e5f9430c8b0c0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-lua";
|
||||
repo = "plenary.nvim";
|
||||
rev = "55d9fe89e33efd26f532ef20223e5f9430c8b0c0";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-f8YVaXMG0ZyW6iotAgnftaYULnL69UPolRad6RTG27g=";
|
||||
};
|
||||
date = "2023-11-30";
|
||||
};
|
||||
presence = {
|
||||
pname = "presence";
|
||||
version = "87c857a56b7703f976d3a5ef15967d80508df6e6";
|
||||
src = fetchFromGitHub {
|
||||
owner = "andweeb";
|
||||
repo = "presence.nvim";
|
||||
rev = "87c857a56b7703f976d3a5ef15967d80508df6e6";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-ZpsunLsn//zYgUtmAm5FqKVueVd/Pa1r55ZDqxCimBk=";
|
||||
};
|
||||
date = "2023-01-29";
|
||||
};
|
||||
py_lsp = {
|
||||
pname = "py_lsp";
|
||||
version = "5b2bd6433a2dbab76d54d58ccc1d1e89b220091c";
|
||||
src = fetchFromGitHub {
|
||||
owner = "hallerpatrick";
|
||||
repo = "py_lsp.nvim";
|
||||
rev = "5b2bd6433a2dbab76d54d58ccc1d1e89b220091c";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-YOYrumIYlWcZBL1LSeBWseb/0G4n8obcll6wPwaXqpM=";
|
||||
};
|
||||
date = "2023-02-28";
|
||||
};
|
||||
rainbow-delimiters = {
|
||||
pname = "rainbow-delimiters";
|
||||
version = "47404636a34580db1636dc0cf35027bdf77abba5";
|
||||
src = fetchFromGitHub {
|
||||
owner = "hiphish";
|
||||
repo = "rainbow-delimiters.nvim";
|
||||
rev = "47404636a34580db1636dc0cf35027bdf77abba5";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-WbRC7hh9tKYU6H0j9Ku0OboR/5PBpqMumT4ieFI8IVI=";
|
||||
};
|
||||
date = "2023-11-26";
|
||||
};
|
||||
rust-tools = {
|
||||
pname = "rust-tools";
|
||||
version = "0cc8adab23117783a0292a0c8a2fbed1005dc645";
|
||||
src = fetchFromGitHub {
|
||||
owner = "simrat39";
|
||||
repo = "rust-tools.nvim";
|
||||
rev = "0cc8adab23117783a0292a0c8a2fbed1005dc645";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-jtfyDxifchznUupLSao6nmpVqaX1yO0xN+NhqS9fgxg=";
|
||||
};
|
||||
date = "2023-07-10";
|
||||
};
|
||||
schemastore = {
|
||||
pname = "schemastore";
|
||||
version = "177cae4f44ddf7c166ef263956378ae308ff77ff";
|
||||
src = fetchFromGitHub {
|
||||
owner = "b0o";
|
||||
repo = "schemastore.nvim";
|
||||
rev = "177cae4f44ddf7c166ef263956378ae308ff77ff";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-YdE0G9QA+z+eS4I6uySqzoHplyaOYgWrCAwfD9ioBIs=";
|
||||
};
|
||||
date = "2023-12-08";
|
||||
};
|
||||
telescope = {
|
||||
pname = "telescope";
|
||||
version = "6213322ab56eb27356fdc09a5078e41e3ea7f3bc";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-telescope";
|
||||
repo = "telescope.nvim";
|
||||
rev = "6213322ab56eb27356fdc09a5078e41e3ea7f3bc";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-Zhx4Sy857CCVuK1qSlTEdZ+0blxheB6+CNnPFS7Cixw=";
|
||||
};
|
||||
date = "2023-12-06";
|
||||
};
|
||||
telescope-asynctasks = {
|
||||
pname = "telescope-asynctasks";
|
||||
version = "065300fb0a8ba6a1c81991da1873c73e136dcdc0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "GustavoKatel";
|
||||
repo = "telescope-asynctasks.nvim";
|
||||
rev = "065300fb0a8ba6a1c81991da1873c73e136dcdc0";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-50HiNqIeaBz1koWwNpLSa8vd+JTVALbafcufVn+S8hw=";
|
||||
};
|
||||
date = "2022-04-09";
|
||||
};
|
||||
telescope-file-browser = {
|
||||
pname = "telescope-file-browser";
|
||||
version = "8e0543365fe5781c9babea7db89ef06bcff3716d";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-telescope";
|
||||
repo = "telescope-file-browser.nvim";
|
||||
rev = "8e0543365fe5781c9babea7db89ef06bcff3716d";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-Ifz0uoHWinAAEJf4OjuIqF9VV1Ji1FIK4V1qUICw7+Y=";
|
||||
};
|
||||
date = "2023-12-07";
|
||||
};
|
||||
telescope-fzf-native = {
|
||||
pname = "telescope-fzf-native";
|
||||
version = "6c921ca12321edaa773e324ef64ea301a1d0da62";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-telescope";
|
||||
repo = "telescope-fzf-native.nvim";
|
||||
rev = "6c921ca12321edaa773e324ef64ea301a1d0da62";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-Hob1x/jwQYfphYGWQ/i44NVyCM+WFT5/4+J5J4/tLYA=";
|
||||
};
|
||||
date = "2023-09-10";
|
||||
};
|
||||
telescope-project = {
|
||||
pname = "telescope-project";
|
||||
version = "1aaf16580a614601a7f7077d9639aeb457dc5559";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-telescope";
|
||||
repo = "telescope-project.nvim";
|
||||
rev = "1aaf16580a614601a7f7077d9639aeb457dc5559";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-touMCltcnqkrQYV1NtNeWLQeFVGt+WM3aIWIdKilA7w=";
|
||||
};
|
||||
date = "2023-12-01";
|
||||
};
|
||||
telescope-ui-select = {
|
||||
pname = "telescope-ui-select";
|
||||
version = "6e51d7da30bd139a6950adf2a47fda6df9fa06d2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nvim-telescope";
|
||||
repo = "telescope-ui-select.nvim";
|
||||
rev = "6e51d7da30bd139a6950adf2a47fda6df9fa06d2";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-YRhNmmG4gx9Ht8JwjQfbTjJyTHEuZmtP6lqnhOsk8bE=";
|
||||
};
|
||||
date = "2023-12-04";
|
||||
};
|
||||
todo-comments = {
|
||||
pname = "todo-comments";
|
||||
version = "4a6737a8d70fe1ac55c64dfa47fcb189ca431872";
|
||||
src = fetchFromGitHub {
|
||||
owner = "folke";
|
||||
repo = "todo-comments.nvim";
|
||||
rev = "4a6737a8d70fe1ac55c64dfa47fcb189ca431872";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-Z041A05I2zESNV+aSghtnijEUeDqPjLQxiOcCVVOwfE=";
|
||||
};
|
||||
date = "2023-10-25";
|
||||
};
|
||||
toggleterm = {
|
||||
pname = "toggleterm";
|
||||
version = "cbd041d91b90cd3c02df03fe6133208888f8e008";
|
||||
src = fetchFromGitHub {
|
||||
owner = "akinsho";
|
||||
repo = "toggleterm.nvim";
|
||||
rev = "cbd041d91b90cd3c02df03fe6133208888f8e008";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-vJApw7XY2wOX9InfWcah+hkNxBfS1+kQUWr4ITxRmgA=";
|
||||
};
|
||||
date = "2023-12-06";
|
||||
};
|
||||
trouble = {
|
||||
pname = "trouble";
|
||||
version = "f1168feada93c0154ede4d1fe9183bf69bac54ea";
|
||||
src = fetchFromGitHub {
|
||||
owner = "folke";
|
||||
repo = "trouble.nvim";
|
||||
rev = "f1168feada93c0154ede4d1fe9183bf69bac54ea";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-8nLghiueYOtWY7OGVxow9A2G/5lgt+Kt5D8q1xeJvVg=";
|
||||
};
|
||||
date = "2023-10-18";
|
||||
};
|
||||
typescript-tools = {
|
||||
pname = "typescript-tools";
|
||||
version = "cbc454075741cd942a5ba92d64613533782f37c7";
|
||||
src = fetchFromGitHub {
|
||||
owner = "pmizio";
|
||||
repo = "typescript-tools.nvim";
|
||||
rev = "cbc454075741cd942a5ba92d64613533782f37c7";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-3ODHLllxSwU38IdC/dNJQ29pSIAIsRMLAUZ9OZbCuYU=";
|
||||
};
|
||||
date = "2023-12-06";
|
||||
};
|
||||
vim-fugitive = {
|
||||
pname = "vim-fugitive";
|
||||
version = "46eaf8918b347906789df296143117774e827616";
|
||||
src = fetchFromGitHub {
|
||||
owner = "tpope";
|
||||
repo = "vim-fugitive";
|
||||
rev = "46eaf8918b347906789df296143117774e827616";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-b6x8suCHRMYzqu/PGlt5FPg+7/CilkjWzlkBZ3i3H/c=";
|
||||
};
|
||||
date = "2023-10-29";
|
||||
};
|
||||
vim-table-mode = {
|
||||
pname = "vim-table-mode";
|
||||
version = "4ff8de2ac93431ee6d85a9e04177012752e6abdc";
|
||||
src = fetchFromGitHub {
|
||||
owner = "dhruvasagar";
|
||||
repo = "vim-table-mode";
|
||||
rev = "4ff8de2ac93431ee6d85a9e04177012752e6abdc";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-8o6PMbnlRf0kQHJxSygxq+zv3Xyh7TURiKopyE6A7XI=";
|
||||
};
|
||||
date = "2023-10-29";
|
||||
};
|
||||
which-key = {
|
||||
pname = "which-key";
|
||||
version = "4433e5ec9a507e5097571ed55c02ea9658fb268a";
|
||||
src = fetchFromGitHub {
|
||||
owner = "folke";
|
||||
repo = "which-key.nvim";
|
||||
rev = "4433e5ec9a507e5097571ed55c02ea9658fb268a";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-uvghPj/teWrRMm09Gh8iQ/LV2nYJw0lmoiZK6L4+1cY=";
|
||||
};
|
||||
date = "2023-10-20";
|
||||
};
|
||||
}
|
368
_sources/markdown-preview-a923f5fc5ba36a3b17e289dc35dc17f66d0548ee/app/yarn.lock
generated
Normal file
368
_sources/markdown-preview-a923f5fc5ba36a3b17e289dc35dc17f66d0548ee/app/yarn.lock
generated
Normal file
|
@ -0,0 +1,368 @@
|
|||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||
# yarn lockfile v1
|
||||
|
||||
|
||||
"@chemzqm/neovim@^5.7.9":
|
||||
version "5.7.9"
|
||||
resolved "https://registry.yarnpkg.com/@chemzqm/neovim/-/neovim-5.7.9.tgz#78cb54d07d8e24533177140371e3ac1d694ff5f7"
|
||||
integrity sha512-ou2lI650Rh+/3tS8HuiVim73RJSkCoVqJsf+Mqyw17+CGxbcCmXQqA2stT81j3QAXsbCF+5Ro/z152TrQLUUBg==
|
||||
dependencies:
|
||||
msgpack-lite "^0.1.26"
|
||||
|
||||
accepts@~1.3.4:
|
||||
version "1.3.8"
|
||||
resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
|
||||
integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==
|
||||
dependencies:
|
||||
mime-types "~2.1.34"
|
||||
negotiator "0.6.3"
|
||||
|
||||
after@0.8.2:
|
||||
version "0.8.2"
|
||||
resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f"
|
||||
integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=
|
||||
|
||||
arraybuffer.slice@~0.0.7:
|
||||
version "0.0.7"
|
||||
resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675"
|
||||
integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==
|
||||
|
||||
backo2@1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947"
|
||||
integrity sha1-MasayLEpNjRj41s+u2n038+6eUc=
|
||||
|
||||
base64-arraybuffer@0.1.4:
|
||||
version "0.1.4"
|
||||
resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz#9818c79e059b1355f97e0428a017c838e90ba812"
|
||||
integrity sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=
|
||||
|
||||
base64id@2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6"
|
||||
integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==
|
||||
|
||||
blob@0.0.5:
|
||||
version "0.0.5"
|
||||
resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683"
|
||||
integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==
|
||||
|
||||
component-bind@1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"
|
||||
integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=
|
||||
|
||||
component-emitter@1.2.1:
|
||||
version "1.2.1"
|
||||
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
|
||||
integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=
|
||||
|
||||
component-emitter@~1.3.0:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
|
||||
integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
|
||||
|
||||
component-inherit@0.0.3:
|
||||
version "0.0.3"
|
||||
resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143"
|
||||
integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=
|
||||
|
||||
cookie@~0.4.1:
|
||||
version "0.4.2"
|
||||
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432"
|
||||
integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==
|
||||
|
||||
date-format@^4.0.3, date-format@^4.0.9:
|
||||
version "4.0.9"
|
||||
resolved "https://registry.yarnpkg.com/date-format/-/date-format-4.0.9.tgz#4788015ac56dedebe83b03bc361f00c1ddcf1923"
|
||||
integrity sha512-+8J+BOUpSrlKLQLeF8xJJVTxS8QfRSuJgwxSVvslzgO3E6khbI0F5mMEPf5mTYhCCm4h99knYP6H3W9n3BQFrg==
|
||||
|
||||
debug@^4.3.3, debug@^4.3.4:
|
||||
version "4.3.4"
|
||||
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
|
||||
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
|
||||
dependencies:
|
||||
ms "2.1.2"
|
||||
|
||||
debug@~3.1.0:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
|
||||
integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
|
||||
dependencies:
|
||||
ms "2.0.0"
|
||||
|
||||
debug@~4.1.0:
|
||||
version "4.1.1"
|
||||
resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
|
||||
integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
|
||||
dependencies:
|
||||
ms "^2.1.1"
|
||||
|
||||
engine.io-client@~3.5.0:
|
||||
version "3.5.2"
|
||||
resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.5.2.tgz#0ef473621294004e9ceebe73cef0af9e36f2f5fa"
|
||||
integrity sha512-QEqIp+gJ/kMHeUun7f5Vv3bteRHppHH/FMBQX/esFj/fuYfjyUKWGMo3VCvIP/V8bE9KcjHmRZrhIz2Z9oNsDA==
|
||||
dependencies:
|
||||
component-emitter "~1.3.0"
|
||||
component-inherit "0.0.3"
|
||||
debug "~3.1.0"
|
||||
engine.io-parser "~2.2.0"
|
||||
has-cors "1.1.0"
|
||||
indexof "0.0.1"
|
||||
parseqs "0.0.6"
|
||||
parseuri "0.0.6"
|
||||
ws "~7.4.2"
|
||||
xmlhttprequest-ssl "~1.6.2"
|
||||
yeast "0.1.2"
|
||||
|
||||
engine.io-parser@~2.2.0:
|
||||
version "2.2.1"
|
||||
resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.2.1.tgz#57ce5611d9370ee94f99641b589f94c97e4f5da7"
|
||||
integrity sha512-x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg==
|
||||
dependencies:
|
||||
after "0.8.2"
|
||||
arraybuffer.slice "~0.0.7"
|
||||
base64-arraybuffer "0.1.4"
|
||||
blob "0.0.5"
|
||||
has-binary2 "~1.0.2"
|
||||
|
||||
engine.io@~3.5.0:
|
||||
version "3.5.0"
|
||||
resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-3.5.0.tgz#9d6b985c8a39b1fe87cd91eb014de0552259821b"
|
||||
integrity sha512-21HlvPUKaitDGE4GXNtQ7PLP0Sz4aWLddMPw2VTyFz1FVZqu/kZsJUO8WNpKuE/OCL7nkfRaOui2ZCJloGznGA==
|
||||
dependencies:
|
||||
accepts "~1.3.4"
|
||||
base64id "2.0.0"
|
||||
cookie "~0.4.1"
|
||||
debug "~4.1.0"
|
||||
engine.io-parser "~2.2.0"
|
||||
ws "~7.4.2"
|
||||
|
||||
event-lite@^0.1.1:
|
||||
version "0.1.2"
|
||||
resolved "https://registry.yarnpkg.com/event-lite/-/event-lite-0.1.2.tgz#838a3e0fdddef8cc90f128006c8e55a4e4e4c11b"
|
||||
integrity sha512-HnSYx1BsJ87/p6swwzv+2v6B4X+uxUteoDfRxsAb1S1BePzQqOLevVmkdA15GHJVd9A9Ok6wygUR18Hu0YeV9g==
|
||||
|
||||
flatted@^3.2.4:
|
||||
version "3.2.5"
|
||||
resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3"
|
||||
integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==
|
||||
|
||||
fs-extra@^10.1.0:
|
||||
version "10.1.0"
|
||||
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf"
|
||||
integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==
|
||||
dependencies:
|
||||
graceful-fs "^4.2.0"
|
||||
jsonfile "^6.0.1"
|
||||
universalify "^2.0.0"
|
||||
|
||||
graceful-fs@^4.1.6, graceful-fs@^4.2.0:
|
||||
version "4.2.10"
|
||||
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
|
||||
integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
|
||||
|
||||
has-binary2@~1.0.2:
|
||||
version "1.0.3"
|
||||
resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d"
|
||||
integrity sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==
|
||||
dependencies:
|
||||
isarray "2.0.1"
|
||||
|
||||
has-cors@1.1.0:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39"
|
||||
integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=
|
||||
|
||||
ieee754@^1.1.8:
|
||||
version "1.2.1"
|
||||
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
|
||||
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
|
||||
|
||||
indexof@0.0.1:
|
||||
version "0.0.1"
|
||||
resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
|
||||
integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=
|
||||
|
||||
int64-buffer@^0.1.9:
|
||||
version "0.1.10"
|
||||
resolved "https://registry.yarnpkg.com/int64-buffer/-/int64-buffer-0.1.10.tgz#277b228a87d95ad777d07c13832022406a473423"
|
||||
integrity sha1-J3siiofZWtd30HwTgyAiQGpHNCM=
|
||||
|
||||
isarray@2.0.1:
|
||||
version "2.0.1"
|
||||
resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e"
|
||||
integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=
|
||||
|
||||
isarray@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
||||
integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
|
||||
|
||||
jsonfile@^6.0.1:
|
||||
version "6.1.0"
|
||||
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
|
||||
integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
|
||||
dependencies:
|
||||
universalify "^2.0.0"
|
||||
optionalDependencies:
|
||||
graceful-fs "^4.1.6"
|
||||
|
||||
log4js@6.4.0:
|
||||
version "6.4.0"
|
||||
resolved "https://registry.yarnpkg.com/log4js/-/log4js-6.4.0.tgz#3f63ccfc8033c83cd617a4d2d50e48be5944eae9"
|
||||
integrity sha512-ysc/XUecZJuN8NoKOssk3V0cQ29xY4fra6fnigZa5VwxFsCsvdqsdnEuAxNN89LlHpbE4KUD3zGcn+kFqonSVQ==
|
||||
dependencies:
|
||||
date-format "^4.0.3"
|
||||
debug "^4.3.3"
|
||||
flatted "^3.2.4"
|
||||
rfdc "^1.3.0"
|
||||
streamroller "^3.0.2"
|
||||
|
||||
mime-db@1.52.0:
|
||||
version "1.52.0"
|
||||
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
|
||||
integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
|
||||
|
||||
mime-types@~2.1.34:
|
||||
version "2.1.35"
|
||||
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
|
||||
integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
|
||||
dependencies:
|
||||
mime-db "1.52.0"
|
||||
|
||||
ms@2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
||||
integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
|
||||
|
||||
ms@2.1.2:
|
||||
version "2.1.2"
|
||||
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
|
||||
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
||||
|
||||
ms@^2.1.1:
|
||||
version "2.1.3"
|
||||
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
|
||||
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
|
||||
|
||||
msgpack-lite@^0.1.26:
|
||||
version "0.1.26"
|
||||
resolved "https://registry.yarnpkg.com/msgpack-lite/-/msgpack-lite-0.1.26.tgz#dd3c50b26f059f25e7edee3644418358e2a9ad89"
|
||||
integrity sha1-3TxQsm8FnyXn7e42REGDWOKprYk=
|
||||
dependencies:
|
||||
event-lite "^0.1.1"
|
||||
ieee754 "^1.1.8"
|
||||
int64-buffer "^0.1.9"
|
||||
isarray "^1.0.0"
|
||||
|
||||
negotiator@0.6.3:
|
||||
version "0.6.3"
|
||||
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
|
||||
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
|
||||
|
||||
parseqs@0.0.6:
|
||||
version "0.0.6"
|
||||
resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.6.tgz#8e4bb5a19d1cdc844a08ac974d34e273afa670d5"
|
||||
integrity sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w==
|
||||
|
||||
parseuri@0.0.6:
|
||||
version "0.0.6"
|
||||
resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.6.tgz#e1496e829e3ac2ff47f39a4dd044b32823c4a25a"
|
||||
integrity sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow==
|
||||
|
||||
rfdc@^1.3.0:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b"
|
||||
integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==
|
||||
|
||||
socket.io-adapter@~1.1.0:
|
||||
version "1.1.2"
|
||||
resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz#ab3f0d6f66b8fc7fca3959ab5991f82221789be9"
|
||||
integrity sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g==
|
||||
|
||||
socket.io-client@2.4.0:
|
||||
version "2.4.0"
|
||||
resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.4.0.tgz#aafb5d594a3c55a34355562fc8aea22ed9119a35"
|
||||
integrity sha512-M6xhnKQHuuZd4Ba9vltCLT9oa+YvTsP8j9NcEiLElfIg8KeYPyhWOes6x4t+LTAC8enQbE/995AdTem2uNyKKQ==
|
||||
dependencies:
|
||||
backo2 "1.0.2"
|
||||
component-bind "1.0.0"
|
||||
component-emitter "~1.3.0"
|
||||
debug "~3.1.0"
|
||||
engine.io-client "~3.5.0"
|
||||
has-binary2 "~1.0.2"
|
||||
indexof "0.0.1"
|
||||
parseqs "0.0.6"
|
||||
parseuri "0.0.6"
|
||||
socket.io-parser "~3.3.0"
|
||||
to-array "0.1.4"
|
||||
|
||||
socket.io-parser@~3.3.0:
|
||||
version "3.3.2"
|
||||
resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.3.2.tgz#ef872009d0adcf704f2fbe830191a14752ad50b6"
|
||||
integrity sha512-FJvDBuOALxdCI9qwRrO/Rfp9yfndRtc1jSgVgV8FDraihmSP/MLGD5PEuJrNfjALvcQ+vMDM/33AWOYP/JSjDg==
|
||||
dependencies:
|
||||
component-emitter "~1.3.0"
|
||||
debug "~3.1.0"
|
||||
isarray "2.0.1"
|
||||
|
||||
socket.io-parser@~3.4.0:
|
||||
version "3.4.1"
|
||||
resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.4.1.tgz#b06af838302975837eab2dc980037da24054d64a"
|
||||
integrity sha512-11hMgzL+WCLWf1uFtHSNvliI++tcRUWdoeYuwIl+Axvwy9z2gQM+7nJyN3STj1tLj5JyIUH8/gpDGxzAlDdi0A==
|
||||
dependencies:
|
||||
component-emitter "1.2.1"
|
||||
debug "~4.1.0"
|
||||
isarray "2.0.1"
|
||||
|
||||
socket.io@2.4.0:
|
||||
version "2.4.0"
|
||||
resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-2.4.0.tgz#01030a2727bd8eb2e85ea96d69f03692ee53d47e"
|
||||
integrity sha512-9UPJ1UTvKayuQfVv2IQ3k7tCQC/fboDyIK62i99dAQIyHKaBsNdTpwHLgKJ6guRWxRtC9H+138UwpaGuQO9uWQ==
|
||||
dependencies:
|
||||
debug "~4.1.0"
|
||||
engine.io "~3.5.0"
|
||||
has-binary2 "~1.0.2"
|
||||
socket.io-adapter "~1.1.0"
|
||||
socket.io-client "2.4.0"
|
||||
socket.io-parser "~3.4.0"
|
||||
|
||||
streamroller@^3.0.2:
|
||||
version "3.0.8"
|
||||
resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-3.0.8.tgz#84b190e4080ee311ca1ebe0444e30ac8eedd028d"
|
||||
integrity sha512-VI+ni3czbFZrd1MrlybxykWZ8sMDCMtTU7YJyhgb9M5X6d1DDxLdJr+gSnmRpXPMnIWxWKMaAE8K0WumBp3lDg==
|
||||
dependencies:
|
||||
date-format "^4.0.9"
|
||||
debug "^4.3.4"
|
||||
fs-extra "^10.1.0"
|
||||
|
||||
to-array@0.1.4:
|
||||
version "0.1.4"
|
||||
resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"
|
||||
integrity sha1-F+bBH3PdTz10zaek/zI46a2b+JA=
|
||||
|
||||
tslib@1.9.3:
|
||||
version "1.9.3"
|
||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
|
||||
integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==
|
||||
|
||||
universalify@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
|
||||
integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
|
||||
|
||||
ws@~7.4.2:
|
||||
version "7.4.6"
|
||||
resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c"
|
||||
integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==
|
||||
|
||||
xmlhttprequest-ssl@~1.6.2:
|
||||
version "1.6.3"
|
||||
resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.6.3.tgz#03b713873b01659dfa2c1c5d056065b27ddc2de6"
|
||||
integrity sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q==
|
||||
|
||||
yeast@0.1.2:
|
||||
version "0.1.2"
|
||||
resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419"
|
||||
integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk=
|
3271
_sources/neovide-0.11.2/Cargo.lock
generated
Normal file
3271
_sources/neovide-0.11.2/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
276
flake.lock
generated
Normal file
276
flake.lock
generated
Normal file
|
@ -0,0 +1,276 @@
|
|||
{
|
||||
"nodes": {
|
||||
"flake-compat": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1696426674,
|
||||
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
|
||||
"owner": "edolstra",
|
||||
"repo": "flake-compat",
|
||||
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "edolstra",
|
||||
"repo": "flake-compat",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"flake-parts": {
|
||||
"inputs": {
|
||||
"nixpkgs-lib": "nixpkgs-lib"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1701473968,
|
||||
"narHash": "sha256-YcVE5emp1qQ8ieHUnxt1wCZCC3ZfAS+SRRWZ2TMda7E=",
|
||||
"owner": "hercules-ci",
|
||||
"repo": "flake-parts",
|
||||
"rev": "34fed993f1674c8d06d58b37ce1e0fe5eebcb9f5",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "hercules-ci",
|
||||
"repo": "flake-parts",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"flake-utils": {
|
||||
"inputs": {
|
||||
"systems": "systems"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1701680307,
|
||||
"narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=",
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"rev": "4022d587cbbfd70fe950c1e2083a02621806a725",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"gitignore": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"pre-commit-nix",
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1660459072,
|
||||
"narHash": "sha256-8DFJjXG8zqoONA1vXtgeKXy68KdJL5UaXR8NtVMUbx8=",
|
||||
"owner": "hercules-ci",
|
||||
"repo": "gitignore.nix",
|
||||
"rev": "a20de23b925fd8264fd7fad6454652e142fd7f73",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "hercules-ci",
|
||||
"repo": "gitignore.nix",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"lazy-nvim": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1678889456,
|
||||
"narHash": "sha256-R+sfPOuWfwbrNXUiKQcb8MHYqK+o5Pw8gkEaYaidqp0=",
|
||||
"owner": "folke",
|
||||
"repo": "lazy.nvim",
|
||||
"rev": "6b55862d2d264f0b48e0b9e42cc2d14f136bed55",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "folke",
|
||||
"repo": "lazy.nvim",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"neovim-nix": {
|
||||
"inputs": {
|
||||
"flake-parts": [
|
||||
"flake-parts"
|
||||
],
|
||||
"lazy-nvim": "lazy-nvim",
|
||||
"neovim": [],
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
],
|
||||
"pre-commit-nix": [
|
||||
"pre-commit-nix"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1700290903,
|
||||
"narHash": "sha256-DyhvApZb/NBZ92dBgr0deJi4XQZ6lppIc92aDGrj8OY=",
|
||||
"owner": "willruggiano",
|
||||
"repo": "neovim.nix",
|
||||
"rev": "e60a1d72dd13617eb7c6a1fd8dec05303b9f9bbe",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "willruggiano",
|
||||
"repo": "neovim.nix",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nil": {
|
||||
"inputs": {
|
||||
"flake-utils": [
|
||||
"flake-utils"
|
||||
],
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
],
|
||||
"rust-overlay": "rust-overlay"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1701225372,
|
||||
"narHash": "sha256-QSiFeEmTzAIIiCtUaMesu7wi7bvfHuFzPMQpOKMt4Lo=",
|
||||
"owner": "oxalica",
|
||||
"repo": "nil",
|
||||
"rev": "0031eb4343fd4672742fd6ff839da9b4f5120646",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "oxalica",
|
||||
"repo": "nil",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1701718080,
|
||||
"narHash": "sha256-6ovz0pG76dE0P170pmmZex1wWcQoeiomUZGggfH9XPs=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "2c7f3c0fb7c08a0814627611d9d7d45ab6d75335",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-lib": {
|
||||
"locked": {
|
||||
"dir": "lib",
|
||||
"lastModified": 1701253981,
|
||||
"narHash": "sha256-ztaDIyZ7HrTAfEEUt9AtTDNoCYxUdSd6NrRHaYOIxtk=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "e92039b55bcd58469325ded85d4f58dd5a4eaf58",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"dir": "lib",
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-stable": {
|
||||
"locked": {
|
||||
"lastModified": 1685801374,
|
||||
"narHash": "sha256-otaSUoFEMM+LjBI1XL/xGB5ao6IwnZOXc47qhIgJe8U=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "c37ca420157f4abc31e26f436c1145f8951ff373",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-23.05",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"pre-commit-nix": {
|
||||
"inputs": {
|
||||
"flake-compat": [
|
||||
"flake-compat"
|
||||
],
|
||||
"flake-utils": [
|
||||
"flake-utils"
|
||||
],
|
||||
"gitignore": "gitignore",
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
],
|
||||
"nixpkgs-stable": "nixpkgs-stable"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1700922917,
|
||||
"narHash": "sha256-ej2fch/T584b5K9sk1UhmZF7W6wEfDHuoUYpFN8dtvM=",
|
||||
"owner": "cachix",
|
||||
"repo": "pre-commit-hooks.nix",
|
||||
"rev": "e5ee5c5f3844550c01d2131096c7271cec5e9b78",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "cachix",
|
||||
"repo": "pre-commit-hooks.nix",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"flake-compat": "flake-compat",
|
||||
"flake-parts": "flake-parts",
|
||||
"flake-utils": "flake-utils",
|
||||
"neovim-nix": "neovim-nix",
|
||||
"nil": "nil",
|
||||
"nixpkgs": "nixpkgs",
|
||||
"pre-commit-nix": "pre-commit-nix"
|
||||
}
|
||||
},
|
||||
"rust-overlay": {
|
||||
"inputs": {
|
||||
"flake-utils": [
|
||||
"nil",
|
||||
"flake-utils"
|
||||
],
|
||||
"nixpkgs": [
|
||||
"nil",
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1696817516,
|
||||
"narHash": "sha256-Xt9OY4Wnk9/vuUfA0OHFtmSlaen5GyiS9msgwOz3okI=",
|
||||
"owner": "oxalica",
|
||||
"repo": "rust-overlay",
|
||||
"rev": "c0df7f2a856b5ff27a3ce314f6d7aacf5fda546f",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "oxalica",
|
||||
"repo": "rust-overlay",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"systems": {
|
||||
"locked": {
|
||||
"lastModified": 1681028828,
|
||||
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
109
flake.nix
Normal file
109
flake.nix
Normal file
|
@ -0,0 +1,109 @@
|
|||
{
|
||||
description = "isabelroses' neovim config";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
|
||||
pre-commit-nix = {
|
||||
url = "github:cachix/pre-commit-hooks.nix";
|
||||
inputs = {
|
||||
flake-compat.follows = "flake-compat";
|
||||
flake-utils.follows = "flake-utils";
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
nil = {
|
||||
url = "github:oxalica/nil";
|
||||
inputs = {
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
flake-utils.follows = "flake-utils";
|
||||
};
|
||||
};
|
||||
|
||||
neovim-nix = {
|
||||
url = "github:willruggiano/neovim.nix";
|
||||
inputs = {
|
||||
flake-parts.follows = "flake-parts";
|
||||
neovim.follows = "";
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
pre-commit-nix.follows = "pre-commit-nix";
|
||||
};
|
||||
};
|
||||
|
||||
# maintenance
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
flake-compat = {
|
||||
url = "github:edolstra/flake-compat";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
outputs = {flake-parts, ...} @ inputs:
|
||||
flake-parts.lib.mkFlake {inherit inputs;} {
|
||||
systems = ["x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin"];
|
||||
|
||||
imports = [
|
||||
inputs.neovim-nix.flakeModule
|
||||
./neovim.nix
|
||||
];
|
||||
|
||||
perSystem = {
|
||||
config,
|
||||
pkgs,
|
||||
system,
|
||||
...
|
||||
}: {
|
||||
_module.args.pkgs = import inputs.nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
overlays = [];
|
||||
};
|
||||
|
||||
checks = {
|
||||
pre-commit-check = inputs.pre-commit-nix.lib.${system}.run {
|
||||
src = ./.;
|
||||
excludes = ["_sources/.+"];
|
||||
hooks = {
|
||||
alejandra.enable = true;
|
||||
stylua.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
devShells.default = pkgs.mkShell {
|
||||
inherit (inputs.self.checks.${system}.pre-commit-check) shellHook;
|
||||
buildInputs = with pkgs; [nil statix deadnix nix-tree];
|
||||
};
|
||||
|
||||
formatter = pkgs.alejandra;
|
||||
|
||||
packages = rec {
|
||||
default = neovim;
|
||||
neovim = config.neovim.final;
|
||||
neovide = pkgs.callPackage ./pkgs/neovide {
|
||||
env = {
|
||||
NEOVIDE_FRAME = "none";
|
||||
NEOVIDE_MULTIGRID = "1";
|
||||
NEOVIM_BIN = "${neovim}/bin/nvim";
|
||||
};
|
||||
};
|
||||
nvim-treesitter = pkgs.callPackage ./pkgs/nvim-treesitter {};
|
||||
telescope-fzf-native = pkgs.callPackage ./pkgs/telescope-fzf-native {};
|
||||
markdown-preview = pkgs.callPackage ./pkgs/markdown-preview {};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
nixConfig = {
|
||||
extra-substituters = [
|
||||
"https://pre-commit-hooks.cachix.org"
|
||||
"https://isabelroses.cachix.org"
|
||||
];
|
||||
extra-trusted-public-keys = [
|
||||
"pre-commit-hooks.cachix.org-1:Pkk3Panw5AW24TOv6kz3PvLhlH8puAsJTBbOPmBo7Rc="
|
||||
"isabelroses.cachix.org-1:mXdV/CMcPDaiTmkQ7/4+MzChpOe6Cb97njKmBQQmLPM="
|
||||
];
|
||||
};
|
||||
}
|
41
helpers/lazy2nvfetcher.lua
Normal file
41
helpers/lazy2nvfetcher.lua
Normal file
|
@ -0,0 +1,41 @@
|
|||
local plugins = require("lazy").plugins()
|
||||
|
||||
-- drop the trailing `.nvim`, replace dots with dashes
|
||||
local function toNvfetcherName(name)
|
||||
return name:lower():gsub("%.nvim$", ""):gsub("%.", "-")
|
||||
end
|
||||
|
||||
table.sort(plugins, function(a, b)
|
||||
return toNvfetcherName(a.name) < toNvfetcherName(b.name)
|
||||
end)
|
||||
|
||||
local c = ""
|
||||
for _, plugin in ipairs(plugins) do
|
||||
local name = toNvfetcherName(plugin.name)
|
||||
|
||||
if plugin.url then
|
||||
-- get rid of the .git at the end
|
||||
local url = plugin.url:sub(1, -5)
|
||||
|
||||
c = c .. "[" .. name .. "]\n"
|
||||
if url:find("github") then
|
||||
c = c .. 'fetch.github = "' .. url:gsub("%w+://github.com/", "") .. '"\n'
|
||||
else
|
||||
c = c .. 'fetch.git = "' .. url .. '"\n'
|
||||
end
|
||||
c = c .. 'src.git = "' .. url .. '"\n'
|
||||
end
|
||||
|
||||
if plugin.branch then
|
||||
c = c .. 'src.branch = "' .. plugin.branch .. '"\n'
|
||||
end
|
||||
c = c .. "\n"
|
||||
end
|
||||
|
||||
-- write the plugins to a file
|
||||
local file = io.open("nvfetcher.toml", "w")
|
||||
if not file then
|
||||
error("Could not open file for writing")
|
||||
end
|
||||
file:write(c)
|
||||
file:close()
|
32
helpers/treesitter2nvfetcher.lua
Normal file
32
helpers/treesitter2nvfetcher.lua
Normal file
|
@ -0,0 +1,32 @@
|
|||
local parsers = require("nvim-treesitter.parsers")
|
||||
local parser_list = parsers.available_parsers()
|
||||
table.sort(parser_list)
|
||||
|
||||
local c = ""
|
||||
|
||||
for _, lang in pairs(parser_list) do
|
||||
-- optional: check if the parser is installed
|
||||
-- local is_installed = #vim.api.nvim_get_runtime_file("parser/" .. lang .. ".so", false) > 0
|
||||
-- if is_installed then ... end
|
||||
|
||||
local info = parsers.get_parser_configs()[lang].install_info
|
||||
|
||||
c = c .. "[tree-sitter-grammar-" .. lang .. "]\n"
|
||||
c = c .. 'fetch.git = "' .. info.url .. '"\n'
|
||||
c = c .. 'src.git = "' .. info.url .. '"\n'
|
||||
if info.branch then
|
||||
c = c .. 'src.branch = "' .. info.branch .. '"\n'
|
||||
end
|
||||
if info.location then
|
||||
c = c .. 'passthru = { location = "' .. info.location .. '" }\n'
|
||||
end
|
||||
c = c .. "\n"
|
||||
end
|
||||
|
||||
-- write the plugins to a file
|
||||
local file = io.open("pkgs/nvim-treesitter/nvfetcher.toml", "w")
|
||||
if not file then
|
||||
error("Could not open file for writing")
|
||||
end
|
||||
file:write(c)
|
||||
file:close()
|
2
init.lua
2
init.lua
|
@ -1,2 +0,0 @@
|
|||
-- bootstrap lazy.nvim, LazyVim and your plugins
|
||||
require("config.lazy")
|
|
@ -1,3 +0,0 @@
|
|||
-- Autocmds are automatically loaded on the VeryLazy event
|
||||
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
|
||||
-- Add any additional autocmds here
|
|
@ -1,23 +0,0 @@
|
|||
-- Keymaps are automatically loaded on the VeryLazy event
|
||||
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
|
||||
-- Add any additional keymaps here
|
||||
|
||||
-- local function unmap(mode, key)
|
||||
-- vim.keymap.del(mode, key, {})
|
||||
-- end
|
||||
|
||||
local function map(mode, lhs, rhs, opts)
|
||||
local keys = require("lazy.core.handler").handlers.keys
|
||||
---@cast keys LazyKeysHandler
|
||||
-- do not create the keymap if a lazy keys handler exists
|
||||
if not keys.active[keys.parse({ lhs, mode = mode }).id] then
|
||||
opts = opts or {}
|
||||
opts.silent = opts.silent ~= false
|
||||
if opts.remap and not vim.g.vscode then
|
||||
opts.remap = nil
|
||||
end
|
||||
vim.keymap.set(mode, lhs, rhs, opts)
|
||||
end
|
||||
end
|
||||
|
||||
map("n", "<leader>qq", "<cmd>qall!<cr>")
|
|
@ -1,37 +0,0 @@
|
|||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not vim.loop.fs_stat(lazypath) then
|
||||
-- bootstrap lazy.nvim
|
||||
-- stylua: ignore
|
||||
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable",
|
||||
lazypath })
|
||||
end
|
||||
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
|
||||
|
||||
require("lazy").setup({
|
||||
spec = {
|
||||
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
||||
{ import = "lazyvim.plugins.extras.util.project" },
|
||||
{ import = "lazyvim.plugins.extras.linting.eslint" },
|
||||
{ import = "lazyvim.plugins.extras.lang.rust" },
|
||||
{ import = "lazyvim.plugins.extras.coding.copilot" },
|
||||
{ import = "lazyvim.plugins.extras.lang.typescript" },
|
||||
{ import = "lazyvim.plugins.extras.lang.json" },
|
||||
{ import = "plugins" },
|
||||
},
|
||||
defaults = {
|
||||
lazy = false,
|
||||
version = false, -- always use the latest git commit
|
||||
},
|
||||
checker = { enabled = true }, -- automatically check for plugin updates
|
||||
performance = {
|
||||
rtp = {
|
||||
disabled_plugins = {
|
||||
"gzip",
|
||||
"tarPlugin",
|
||||
"tohtml",
|
||||
"tutor",
|
||||
"zipPlugin",
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
|
@ -1,15 +0,0 @@
|
|||
local opt = vim.opt
|
||||
|
||||
opt.conceallevel = 1 -- so that `` is visible in markdown files
|
||||
opt.clipboard = "" -- use system clipboard
|
||||
opt.laststatus = 3 -- always show statusline
|
||||
opt.cmdheight = 0 -- height of command bar
|
||||
opt.updatetime = 100 -- faster completion
|
||||
opt.list = false -- show whitespace characters
|
||||
opt.cursorline = false -- highlight current line
|
||||
opt.clipboard = "unnamedplus" -- sync clipboard with os
|
||||
|
||||
opt.tabstop = 4
|
||||
opt.softtabstop = 4
|
||||
opt.shiftwidth = 4
|
||||
opt.expandtab = true
|
|
@ -1,16 +0,0 @@
|
|||
return {
|
||||
"goolord/alpha-nvim",
|
||||
opts = function(_, opts)
|
||||
local logo = [[
|
||||
███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗
|
||||
████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║
|
||||
██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║
|
||||
██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║
|
||||
██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║
|
||||
╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝
|
||||
|
||||
[ @isabelroses ]
|
||||
]]
|
||||
opts.section.header.val = vim.split(logo, "\n", { trimempty = true })
|
||||
end,
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
return {
|
||||
"akinsho/bufferline.nvim",
|
||||
opts = {
|
||||
options = {
|
||||
-- stylua: ignore
|
||||
close_command = function(n) require("mini.bufremove").delete(n, false) end,
|
||||
-- stylua: ignore
|
||||
right_mouse_command = function(n) require("mini.bufremove").delete(n, false) end,
|
||||
diagnostics = "nvim_lsp",
|
||||
always_show_bufferline = true,
|
||||
diagnostics_indicator = function(_, _, diag)
|
||||
local icons = require("lazyvim.config").icons.diagnostics
|
||||
local ret = (diag.error and icons.Error .. diag.error .. " " or "")
|
||||
.. (diag.warning and icons.Warn .. diag.warning or "")
|
||||
return vim.trim(ret)
|
||||
end,
|
||||
offsets = {
|
||||
{
|
||||
filetype = "neo-tree",
|
||||
text = "File Explorer",
|
||||
highlight = "Directory",
|
||||
text_align = "center",
|
||||
separator = true,
|
||||
},
|
||||
},
|
||||
indicator = {
|
||||
icon = "▎",
|
||||
style = "icon",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
return {
|
||||
{
|
||||
"andweeb/presence.nvim",
|
||||
opts = {
|
||||
neovim_image_text = "Home Sweet Home",
|
||||
},
|
||||
},
|
||||
}
|
|
@ -1,81 +0,0 @@
|
|||
return {
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
servers = {
|
||||
bashls = {},
|
||||
clangd = {},
|
||||
cssls = {},
|
||||
eslint = {},
|
||||
stylelint_lsp = {},
|
||||
html = {},
|
||||
svelte = {},
|
||||
tsserver = {},
|
||||
marksman = {},
|
||||
nil_ls = {},
|
||||
lua_ls = {},
|
||||
gopls = {},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
-- add tsserver and setup with typescript.nvim instead of lspconfig
|
||||
"neovim/nvim-lspconfig",
|
||||
dependencies = {
|
||||
"jose-elias-alvarez/typescript.nvim",
|
||||
init = function()
|
||||
require("lazyvim.util").on_attach(function(_, buffer)
|
||||
-- stylua: ignore
|
||||
vim.keymap.set( "n", "<leader>co", "TypescriptOrganizeImports", { buffer = buffer, desc = "Organize Imports" })
|
||||
vim.keymap.set("n", "<leader>cR", "TypescriptRenameFile", { desc = "Rename File", buffer = buffer })
|
||||
end)
|
||||
end,
|
||||
},
|
||||
---@class PluginLspOpts
|
||||
opts = {
|
||||
servers = {
|
||||
-- tsserver will be automatically installed with mason and loaded with lspconfig
|
||||
tsserver = {},
|
||||
},
|
||||
-- you can do any additional lsp server setup here
|
||||
-- return true if you don't want this server to be setup with lspconfig
|
||||
---@type table<string, fun(server:string, opts:_.lspconfig.options):boolean?>
|
||||
setup = {
|
||||
-- example to setup with typescript.nvim
|
||||
tsserver = function(_, opts)
|
||||
require("typescript").setup({ server = opts })
|
||||
return true
|
||||
end,
|
||||
-- Specify * to use this function as a fallback for any server
|
||||
-- ["*"] = function(server, opts) end,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
"simrat39/rust-tools.nvim",
|
||||
opts = {
|
||||
tools = {
|
||||
inlay_hints = {
|
||||
auto = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
"lervag/vimtex",
|
||||
},
|
||||
{
|
||||
"echasnovski/mini.surround",
|
||||
opts = {
|
||||
mappings = {
|
||||
add = "gsa",
|
||||
delete = "gsd",
|
||||
find = "gsf",
|
||||
find_left = "gsF",
|
||||
highlight = "gsh",
|
||||
replace = "gsr",
|
||||
update_n_lines = "gsn",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
return {
|
||||
"simrat39/symbols-outline.nvim",
|
||||
cmd = "SymbolsOutline",
|
||||
keys = { { "<leader>cs", "<cmd>SymbolsOutline<cr>", desc = "Symbols Outline" } },
|
||||
config = true,
|
||||
}
|
|
@ -1,16 +0,0 @@
|
|||
return {
|
||||
{
|
||||
"catppuccin/nvim",
|
||||
lazy = false,
|
||||
name = "catppuccin",
|
||||
opts = {
|
||||
flavour = "mocha",
|
||||
},
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "catppuccin",
|
||||
},
|
||||
},
|
||||
}
|
63
neovim.nix
Normal file
63
neovim.nix
Normal file
|
@ -0,0 +1,63 @@
|
|||
{
|
||||
config = {
|
||||
perSystem = {pkgs, ...}: {
|
||||
neovim = {
|
||||
package = pkgs.neovim-unwrapped;
|
||||
|
||||
paths = with pkgs; [
|
||||
# external deps
|
||||
fd
|
||||
git
|
||||
ripgrep
|
||||
lazygit
|
||||
|
||||
# python
|
||||
black
|
||||
isort
|
||||
nodePackages.pyright
|
||||
|
||||
# lua
|
||||
stylua
|
||||
lua-language-server
|
||||
luaPackages.tl
|
||||
luaPackages.teal-language-server
|
||||
|
||||
# webdev
|
||||
nodePackages.nodejs
|
||||
nodePackages."@astrojs/language-server"
|
||||
nodePackages."@tailwindcss/language-server"
|
||||
nodePackages.alex
|
||||
nodePackages.bash-language-server
|
||||
nodePackages.dockerfile-language-server-nodejs
|
||||
nodePackages.graphql
|
||||
nodePackages.graphql-language-service-cli
|
||||
nodePackages.intelephense
|
||||
nodePackages.typescript
|
||||
nodePackages.typescript-language-server
|
||||
nodePackages.vscode-langservers-extracted
|
||||
nodePackages.yaml-language-server
|
||||
|
||||
# nix
|
||||
alejandra
|
||||
nil
|
||||
statix
|
||||
deadnix
|
||||
|
||||
# etc
|
||||
deno
|
||||
ltex-ls
|
||||
nodePackages.prettier
|
||||
proselint
|
||||
shellcheck
|
||||
shfmt
|
||||
taplo
|
||||
];
|
||||
|
||||
lazy = {
|
||||
settings.install.colorscheme = ["catppuccin"];
|
||||
plugins = import ./plugins {inherit pkgs;};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
306
nvfetcher.toml
Normal file
306
nvfetcher.toml
Normal file
|
@ -0,0 +1,306 @@
|
|||
[alpha-nvim]
|
||||
fetch.github = "goolord/alpha-nvim"
|
||||
src.git = "https://github.com/goolord/alpha-nvim"
|
||||
|
||||
[asyncrun-vim]
|
||||
fetch.github = "skywind3000/asyncrun.vim"
|
||||
src.git = "https://github.com/skywind3000/asyncrun.vim"
|
||||
|
||||
[asynctasks-vim]
|
||||
fetch.github = "skywind3000/asynctasks.vim"
|
||||
src.git = "https://github.com/skywind3000/asynctasks.vim"
|
||||
|
||||
[bufferline]
|
||||
fetch.github = "akinsho/bufferline.nvim"
|
||||
src.git = "https://github.com/akinsho/bufferline.nvim"
|
||||
|
||||
[catppuccin]
|
||||
fetch.github = "catppuccin/nvim"
|
||||
src.git = "https://github.com/catppuccin/nvim"
|
||||
|
||||
[cmp-buffer]
|
||||
fetch.github = "hrsh7th/cmp-buffer"
|
||||
src.git = "https://github.com/hrsh7th/cmp-buffer"
|
||||
|
||||
[cmp-cmdline]
|
||||
fetch.github = "hrsh7th/cmp-cmdline"
|
||||
src.git = "https://github.com/hrsh7th/cmp-cmdline"
|
||||
|
||||
[cmp-git]
|
||||
fetch.github = "petertriho/cmp-git"
|
||||
src.git = "https://github.com/petertriho/cmp-git"
|
||||
|
||||
[cmp-nvim-lsp]
|
||||
fetch.github = "hrsh7th/cmp-nvim-lsp"
|
||||
src.git = "https://github.com/hrsh7th/cmp-nvim-lsp"
|
||||
|
||||
[cmp-path]
|
||||
fetch.github = "hrsh7th/cmp-path"
|
||||
src.git = "https://github.com/hrsh7th/cmp-path"
|
||||
|
||||
[cmp_luasnip]
|
||||
fetch.github = "saadparwaiz1/cmp_luasnip"
|
||||
src.git = "https://github.com/saadparwaiz1/cmp_luasnip"
|
||||
|
||||
[color-picker]
|
||||
fetch.github = "ziontee113/color-picker.nvim"
|
||||
src.git = "https://github.com/ziontee113/color-picker.nvim"
|
||||
|
||||
[comment]
|
||||
fetch.github = "numtostr/comment.nvim"
|
||||
src.git = "https://github.com/numtostr/comment.nvim"
|
||||
|
||||
[copilot-lua]
|
||||
fetch.github = "zbirenbaum/copilot.lua"
|
||||
src.git = "https://github.com/zbirenbaum/copilot.lua"
|
||||
|
||||
[copilot-cmp]
|
||||
fetch.github = "zbirenbaum/copilot-cmp"
|
||||
src.git = "https://github.com/zbirenbaum/copilot-cmp"
|
||||
|
||||
[crates]
|
||||
fetch.github = "saecki/crates.nvim"
|
||||
src.git = "https://github.com/saecki/crates.nvim"
|
||||
|
||||
[diffview]
|
||||
fetch.github = "sindrets/diffview.nvim"
|
||||
src.git = "https://github.com/sindrets/diffview.nvim"
|
||||
|
||||
[dressing]
|
||||
fetch.github = "stevearc/dressing.nvim"
|
||||
src.git = "https://github.com/stevearc/dressing.nvim"
|
||||
|
||||
[editorconfig]
|
||||
fetch.github = "gpanders/editorconfig.nvim"
|
||||
src.git = "https://github.com/gpanders/editorconfig.nvim"
|
||||
|
||||
[fidget]
|
||||
fetch.github = "j-hui/fidget.nvim"
|
||||
src.git = "https://github.com/j-hui/fidget.nvim"
|
||||
src.branch = "legacy"
|
||||
|
||||
[friendly-snippets]
|
||||
fetch.github = "rafamadriz/friendly-snippets"
|
||||
src.git = "https://github.com/rafamadriz/friendly-snippets"
|
||||
|
||||
[gitsigns]
|
||||
fetch.github = "lewis6991/gitsigns.nvim"
|
||||
src.git = "https://github.com/lewis6991/gitsigns.nvim"
|
||||
|
||||
[glance]
|
||||
fetch.github = "dnlhc/glance.nvim"
|
||||
src.git = "https://github.com/dnlhc/glance.nvim"
|
||||
|
||||
[indent-blankline]
|
||||
fetch.github = "lukas-reineke/indent-blankline.nvim"
|
||||
src.git = "https://github.com/lukas-reineke/indent-blankline.nvim"
|
||||
|
||||
[lazy]
|
||||
fetch.github = "folke/lazy.nvim"
|
||||
src.git = "https://github.com/folke/lazy.nvim"
|
||||
|
||||
[lazygit]
|
||||
fetch.github = "kdheepak/lazygit.nvim"
|
||||
src.git = "https://github.com/kdheepak/lazygit.nvim"
|
||||
|
||||
[lsp-status]
|
||||
fetch.github = "nvim-lua/lsp-status.nvim"
|
||||
src.git = "https://github.com/nvim-lua/lsp-status.nvim"
|
||||
|
||||
[lspkind]
|
||||
fetch.github = "onsails/lspkind.nvim"
|
||||
src.git = "https://github.com/onsails/lspkind.nvim"
|
||||
|
||||
[ltex-extra]
|
||||
fetch.github = "barreiroleo/ltex-extra.nvim"
|
||||
src.git = "https://github.com/barreiroleo/ltex-extra.nvim"
|
||||
|
||||
[lualine]
|
||||
fetch.github = "nvim-lualine/lualine.nvim"
|
||||
src.git = "https://github.com/nvim-lualine/lualine.nvim"
|
||||
|
||||
[luasnip]
|
||||
fetch.github = "L3MON4D3/LuaSnip"
|
||||
src.git = "https://github.com/L3MON4D3/LuaSnip"
|
||||
|
||||
[markdown-preview]
|
||||
extract = ["app/yarn.lock"]
|
||||
fetch.github = "iamcco/markdown-preview.nvim"
|
||||
src.git = "https://github.com/iamcco/markdown-preview.nvim"
|
||||
|
||||
[neoconf]
|
||||
fetch.github = "folke/neoconf.nvim"
|
||||
src.git = "https://github.com/folke/neoconf.nvim"
|
||||
|
||||
[neodev]
|
||||
fetch.github = "folke/neodev.nvim"
|
||||
src.git = "https://github.com/folke/neodev.nvim"
|
||||
|
||||
[neorepl]
|
||||
fetch.github = "ii14/neorepl.nvim"
|
||||
src.git = "https://github.com/ii14/neorepl.nvim"
|
||||
|
||||
[neovim-session-manager]
|
||||
fetch.github = "Shatur/neovim-session-manager"
|
||||
src.git = "https://github.com/Shatur/neovim-session-manager"
|
||||
|
||||
[null-ls]
|
||||
fetch.github = "jose-elias-alvarez/null-ls.nvim"
|
||||
src.git = "https://github.com/jose-elias-alvarez/null-ls.nvim"
|
||||
|
||||
[nvim-autopairs]
|
||||
fetch.github = "windwp/nvim-autopairs"
|
||||
src.git = "https://github.com/windwp/nvim-autopairs"
|
||||
|
||||
[nvim-cmp]
|
||||
fetch.github = "hrsh7th/nvim-cmp"
|
||||
src.git = "https://github.com/hrsh7th/nvim-cmp"
|
||||
|
||||
[nvim-colorizer-lua]
|
||||
fetch.github = "nvchad/nvim-colorizer.lua"
|
||||
src.git = "https://github.com/nvchad/nvim-colorizer.lua"
|
||||
|
||||
[nvim-dap]
|
||||
fetch.github = "mfussenegger/nvim-dap"
|
||||
src.git = "https://github.com/mfussenegger/nvim-dap"
|
||||
|
||||
[nvim-dap-ui]
|
||||
fetch.github = "rcarriga/nvim-dap-ui"
|
||||
src.git = "https://github.com/rcarriga/nvim-dap-ui"
|
||||
|
||||
[nvim-dap-virtual-text]
|
||||
fetch.github = "theHamsta/nvim-dap-virtual-text"
|
||||
src.git = "https://github.com/theHamsta/nvim-dap-virtual-text"
|
||||
|
||||
[nvim-lspconfig]
|
||||
fetch.github = "neovim/nvim-lspconfig"
|
||||
src.git = "https://github.com/neovim/nvim-lspconfig"
|
||||
|
||||
[nvim-navic]
|
||||
fetch.github = "SmiteshP/nvim-navic"
|
||||
src.git = "https://github.com/SmiteshP/nvim-navic"
|
||||
|
||||
[nvim-notify]
|
||||
fetch.github = "rcarriga/nvim-notify"
|
||||
src.git = "https://github.com/rcarriga/nvim-notify"
|
||||
|
||||
[nvim-spectre]
|
||||
fetch.github = "nvim-pack/nvim-spectre"
|
||||
src.git = "https://github.com/nvim-pack/nvim-spectre"
|
||||
|
||||
[nvim-surround]
|
||||
fetch.github = "kylechui/nvim-surround"
|
||||
src.git = "https://github.com/kylechui/nvim-surround"
|
||||
|
||||
[nvim-tree-lua]
|
||||
fetch.github = "nvim-tree/nvim-tree.lua"
|
||||
src.git = "https://github.com/nvim-tree/nvim-tree.lua"
|
||||
|
||||
[nvim-treesitter]
|
||||
fetch.github = "nvim-treesitter/nvim-treesitter"
|
||||
src.git = "https://github.com/nvim-treesitter/nvim-treesitter"
|
||||
|
||||
[nvim-treesitter-context]
|
||||
fetch.github = "nvim-treesitter/nvim-treesitter-context"
|
||||
src.git = "https://github.com/nvim-treesitter/nvim-treesitter-context"
|
||||
|
||||
[nvim-treesitter-textobjects]
|
||||
fetch.github = "nvim-treesitter/nvim-treesitter-textobjects"
|
||||
src.git = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects"
|
||||
|
||||
[nvim-ts-autotag]
|
||||
fetch.github = "windwp/nvim-ts-autotag"
|
||||
src.git = "https://github.com/windwp/nvim-ts-autotag"
|
||||
|
||||
[nvim-web-devicons]
|
||||
fetch.github = "nvim-tree/nvim-web-devicons"
|
||||
src.git = "https://github.com/nvim-tree/nvim-web-devicons"
|
||||
|
||||
[obsidian-nvim]
|
||||
fetch.github = "epwalsh/obsidian.nvim"
|
||||
src.git = "https://github.com/epwalsh/obsidian.nvim"
|
||||
|
||||
[playground]
|
||||
fetch.github = "nvim-treesitter/playground"
|
||||
src.git = "https://github.com/nvim-treesitter/playground"
|
||||
|
||||
[plenary]
|
||||
fetch.github = "nvim-lua/plenary.nvim"
|
||||
src.git = "https://github.com/nvim-lua/plenary.nvim"
|
||||
|
||||
[presence]
|
||||
fetch.github = "andweeb/presence.nvim"
|
||||
src.git = "https://github.com/andweeb/presence.nvim"
|
||||
|
||||
[py_lsp]
|
||||
fetch.github = "hallerpatrick/py_lsp.nvim"
|
||||
src.git = "https://github.com/hallerpatrick/py_lsp.nvim"
|
||||
|
||||
[rainbow-delimiters]
|
||||
fetch.github = "hiphish/rainbow-delimiters.nvim"
|
||||
src.git = "https://github.com/hiphish/rainbow-delimiters.nvim"
|
||||
|
||||
[rust-tools]
|
||||
fetch.github = "simrat39/rust-tools.nvim"
|
||||
src.git = "https://github.com/simrat39/rust-tools.nvim"
|
||||
|
||||
[schemastore]
|
||||
fetch.github = "b0o/schemastore.nvim"
|
||||
src.git = "https://github.com/b0o/schemastore.nvim"
|
||||
|
||||
[telescope]
|
||||
fetch.github = "nvim-telescope/telescope.nvim"
|
||||
src.git = "https://github.com/nvim-telescope/telescope.nvim"
|
||||
|
||||
[telescope-asynctasks]
|
||||
fetch.github = "GustavoKatel/telescope-asynctasks.nvim"
|
||||
src.git = "https://github.com/GustavoKatel/telescope-asynctasks.nvim"
|
||||
|
||||
[telescope-file-browser]
|
||||
fetch.github = "nvim-telescope/telescope-file-browser.nvim"
|
||||
src.git = "https://github.com/nvim-telescope/telescope-file-browser.nvim"
|
||||
|
||||
[telescope-fzf-native]
|
||||
fetch.github = "nvim-telescope/telescope-fzf-native.nvim"
|
||||
src.git = "https://github.com/nvim-telescope/telescope-fzf-native.nvim"
|
||||
|
||||
[telescope-project]
|
||||
fetch.github = "nvim-telescope/telescope-project.nvim"
|
||||
src.git = "https://github.com/nvim-telescope/telescope-project.nvim"
|
||||
|
||||
[telescope-ui-select]
|
||||
fetch.github = "nvim-telescope/telescope-ui-select.nvim"
|
||||
src.git = "https://github.com/nvim-telescope/telescope-ui-select.nvim"
|
||||
|
||||
[todo-comments]
|
||||
fetch.github = "folke/todo-comments.nvim"
|
||||
src.git = "https://github.com/folke/todo-comments.nvim"
|
||||
|
||||
[toggleterm]
|
||||
fetch.github = "akinsho/toggleterm.nvim"
|
||||
src.git = "https://github.com/akinsho/toggleterm.nvim"
|
||||
|
||||
[trouble]
|
||||
fetch.github = "folke/trouble.nvim"
|
||||
src.git = "https://github.com/folke/trouble.nvim"
|
||||
|
||||
[typescript-tools]
|
||||
fetch.github = "pmizio/typescript-tools.nvim"
|
||||
src.git = "https://github.com/pmizio/typescript-tools.nvim"
|
||||
|
||||
[vim-fugitive]
|
||||
fetch.github = "tpope/vim-fugitive"
|
||||
src.git = "https://github.com/tpope/vim-fugitive"
|
||||
|
||||
[vim-table-mode]
|
||||
fetch.github = "dhruvasagar/vim-table-mode"
|
||||
src.git = "https://github.com/dhruvasagar/vim-table-mode"
|
||||
|
||||
[which-key]
|
||||
fetch.github = "folke/which-key.nvim"
|
||||
src.git = "https://github.com/folke/which-key.nvim"
|
||||
|
||||
[neovide]
|
||||
src.github = "neovide/neovide"
|
||||
fetch.github = "neovide/neovide"
|
||||
cargo_locks = ["Cargo.lock"]
|
43
pkgs/markdown-preview/default.nix
Normal file
43
pkgs/markdown-preview/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
callPackage,
|
||||
fixup_yarn_lock,
|
||||
lib,
|
||||
nodejs,
|
||||
runCommand,
|
||||
vimUtils,
|
||||
writeText,
|
||||
yarn,
|
||||
yarn2nix,
|
||||
}: let
|
||||
nvfetcher = (callPackage ../../_sources/generated.nix {}).markdown-preview;
|
||||
|
||||
yarnLock = writeText "yarn.lock" nvfetcher."app/yarn.lock";
|
||||
yarnDrv = runCommand "yarn2nix" {} ''
|
||||
${yarn2nix}/bin/yarn2nix --lockfile="${yarnLock}" --no-patch --builtin-fetchgit > "$out"
|
||||
'';
|
||||
|
||||
offlineCache = (callPackage yarnDrv {}).offline_cache;
|
||||
|
||||
defaultYarnFlags = [
|
||||
"--offline"
|
||||
"--frozen-lockfile"
|
||||
"--ignore-engines"
|
||||
"--ignore-scripts"
|
||||
];
|
||||
in
|
||||
vimUtils.buildVimPlugin {
|
||||
inherit (nvfetcher) pname version src;
|
||||
buildInputs = [nodejs yarn];
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
|
||||
export HOME=$(pwd)
|
||||
yarn config set yarn-offline-mirror ${offlineCache}
|
||||
cd app
|
||||
${fixup_yarn_lock}/bin/fixup_yarn_lock ./yarn.lock
|
||||
yarn install ${lib.escapeShellArgs defaultYarnFlags}
|
||||
cd ..
|
||||
|
||||
runHook postBuild
|
||||
'';
|
||||
}
|
97
pkgs/neovide/default.nix
Normal file
97
pkgs/neovide/default.nix
Normal file
|
@ -0,0 +1,97 @@
|
|||
{
|
||||
SDL2,
|
||||
callPackage,
|
||||
cargo-bundle,
|
||||
clangStdenv,
|
||||
darwin,
|
||||
enableWayland ? stdenv.isLinux,
|
||||
env ? {},
|
||||
fontconfig,
|
||||
lib,
|
||||
libglvnd,
|
||||
libxkbcommon,
|
||||
makeWrapper,
|
||||
pkg-config,
|
||||
python3,
|
||||
removeReferencesTo,
|
||||
rustPlatform,
|
||||
stdenv,
|
||||
wayland,
|
||||
xcbuild,
|
||||
xorg,
|
||||
}: let
|
||||
nvfetcher = (callPackage ../../_sources/generated.nix {}).neovide;
|
||||
inherit (lib) optionals optionalString;
|
||||
inherit (stdenv) isLinux isDarwin;
|
||||
in
|
||||
rustPlatform.buildRustPackage.override {stdenv = clangStdenv;} rec {
|
||||
inherit (nvfetcher) pname version src;
|
||||
cargoLock = nvfetcher.cargoLock."Cargo.lock";
|
||||
|
||||
nativeBuildInputs =
|
||||
[
|
||||
cargo-bundle
|
||||
makeWrapper
|
||||
pkg-config
|
||||
python3 # skia
|
||||
removeReferencesTo
|
||||
]
|
||||
++ optionals isDarwin [xcbuild];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
buildInputs =
|
||||
[
|
||||
SDL2
|
||||
fontconfig
|
||||
rustPlatform.bindgenHook
|
||||
]
|
||||
++ optionals isDarwin [
|
||||
darwin.apple_sdk.frameworks.AppKit
|
||||
];
|
||||
|
||||
postBuild = optionalString isDarwin ''
|
||||
cargo bundle --release
|
||||
mkdir -p "$out/Applications"
|
||||
cp -r ./target/release/bundle/osx/Neovide.app "$out/Applications"
|
||||
'';
|
||||
|
||||
postFixup = let
|
||||
libPath = lib.makeLibraryPath ([
|
||||
libglvnd
|
||||
libxkbcommon
|
||||
xorg.libXcursor
|
||||
xorg.libXext
|
||||
xorg.libXrandr
|
||||
xorg.libXi
|
||||
]
|
||||
++ optionals enableWayland [wayland]);
|
||||
toEnv = env:
|
||||
with builtins;
|
||||
concatStringsSep " " (attrValues (mapAttrs (k: v: "--set ${k} ${toString v}") env));
|
||||
in
|
||||
''
|
||||
wrapProgram $out/bin/neovide \
|
||||
${toEnv env} \
|
||||
--prefix LD_LIBRARY_PATH : ${libPath}
|
||||
''
|
||||
+ optionalString isDarwin ''
|
||||
cp -f "$out/bin/neovide" "$out/Applications/Neovide.app/Contents/MacOS"
|
||||
'';
|
||||
|
||||
postInstall = optionalString isLinux ''
|
||||
for n in 16x16 32x32 48x48 256x256; do
|
||||
install -m444 -D "assets/neovide-$n.png" \
|
||||
"$out/share/icons/hicolor/$n/apps/neovide.png"
|
||||
done
|
||||
install -m444 -Dt $out/share/icons/hicolor/scalable/apps assets/neovide.svg
|
||||
install -m444 -Dt $out/share/applications assets/neovide.desktop
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "This is a simple graphical user interface for Neovim.";
|
||||
homepage = "https://github.com/neovide/neovide";
|
||||
changelog = "https://github.com/neovide/neovide/releases/tag/${version}";
|
||||
license = with licenses; [mit];
|
||||
};
|
||||
}
|
4174
pkgs/nvim-treesitter/_sources/generated.json
generated
Normal file
4174
pkgs/nvim-treesitter/_sources/generated.json
generated
Normal file
File diff suppressed because it is too large
Load diff
2853
pkgs/nvim-treesitter/_sources/generated.nix
generated
Normal file
2853
pkgs/nvim-treesitter/_sources/generated.nix
generated
Normal file
File diff suppressed because it is too large
Load diff
116
pkgs/nvim-treesitter/default.nix
Normal file
116
pkgs/nvim-treesitter/default.nix
Normal file
|
@ -0,0 +1,116 @@
|
|||
{
|
||||
callPackage,
|
||||
lib,
|
||||
stdenv,
|
||||
symlinkJoin,
|
||||
tree-sitter,
|
||||
pkgs,
|
||||
}: let
|
||||
nvplugins = callPackage ../../_sources/generated.nix {};
|
||||
nvgrammars = callPackage ./_sources/generated.nix {};
|
||||
inherit (nvplugins) nvim-treesitter;
|
||||
|
||||
grammars = {
|
||||
arduino = {};
|
||||
astro = {};
|
||||
awk = {};
|
||||
bash = {};
|
||||
beancount = {};
|
||||
c = {};
|
||||
cpp = {};
|
||||
d.overrides = {
|
||||
buildInputs = [pkgs.nodejs];
|
||||
preBuild = "${tree-sitter}/bin/tree-sitter generate";
|
||||
};
|
||||
css = {};
|
||||
csv = {};
|
||||
diff = {};
|
||||
dockerfile = {};
|
||||
git_config = {};
|
||||
git_rebase = {};
|
||||
gitattributes = {};
|
||||
gitcommit = {};
|
||||
gitignore = {};
|
||||
go = {};
|
||||
gomod = {};
|
||||
gosum = {};
|
||||
gpg = {};
|
||||
graphql = {};
|
||||
haskell = {};
|
||||
hlsl = {};
|
||||
html = {};
|
||||
javascript = {};
|
||||
jsdoc = {};
|
||||
json = {};
|
||||
jsonc = {};
|
||||
lua = {};
|
||||
make = {};
|
||||
markdown = {};
|
||||
markdown_inline = {};
|
||||
norg = {};
|
||||
norg_meta = {};
|
||||
nix = {};
|
||||
php = {};
|
||||
pug = {};
|
||||
python = {};
|
||||
rust = {};
|
||||
scss = {};
|
||||
typescript = {};
|
||||
tsv = {};
|
||||
tsx = {};
|
||||
svelte = {};
|
||||
vue = {};
|
||||
yaml = {};
|
||||
};
|
||||
|
||||
treesitterGrammars = lib.mapAttrsToList (name: attrs:
|
||||
stdenv.mkDerivation (let
|
||||
nvgrammar = nvgrammars."tree-sitter-grammar-${name}";
|
||||
sourceRoot =
|
||||
if lib.hasAttr "location" nvgrammar
|
||||
then nvgrammar.location
|
||||
else ".";
|
||||
in
|
||||
{
|
||||
inherit (nvgrammar) pname version src;
|
||||
|
||||
buildInputs = [tree-sitter];
|
||||
|
||||
CFLAGS = ["-Isrc" "-O2"];
|
||||
CXXFLAGS = ["-Isrc" "-O2"];
|
||||
|
||||
dontConfigure = true;
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
cd ${sourceRoot}
|
||||
if [[ -e "src/scanner.cc" ]]; then
|
||||
$CXX -c "src/scanner.cc" -o scanner.o $CXXFLAGS
|
||||
elif [[ -e "src/scanner.c" ]]; then
|
||||
$CC -c "src/scanner.c" -o scanner.o $CFLAGS
|
||||
fi
|
||||
$CC -c "src/parser.c" -o parser.o $CFLAGS
|
||||
$CXX -shared -o parser *.o
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/parser
|
||||
mv parser $out/parser/${name}.so
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
fixupPhase = lib.optionalString stdenv.isLinux ''
|
||||
runHook preFixup
|
||||
$STRIP $out/parser/${name}.so
|
||||
runHook postFixup
|
||||
'';
|
||||
}
|
||||
// attrs.overrides or {}))
|
||||
grammars;
|
||||
in
|
||||
symlinkJoin {
|
||||
name = "nvim-tree-sitter";
|
||||
paths = [nvim-treesitter.src] ++ treesitterGrammars;
|
||||
}
|
891
pkgs/nvim-treesitter/nvfetcher.toml
Normal file
891
pkgs/nvim-treesitter/nvfetcher.toml
Normal file
|
@ -0,0 +1,891 @@
|
|||
[tree-sitter-grammar-ada]
|
||||
fetch.git = "https://github.com/briot/tree-sitter-ada"
|
||||
src.git = "https://github.com/briot/tree-sitter-ada"
|
||||
|
||||
[tree-sitter-grammar-agda]
|
||||
fetch.git = "https://github.com/AusCyberman/tree-sitter-agda"
|
||||
src.git = "https://github.com/AusCyberman/tree-sitter-agda"
|
||||
|
||||
[tree-sitter-grammar-arduino]
|
||||
fetch.git = "https://github.com/ObserverOfTime/tree-sitter-arduino"
|
||||
src.git = "https://github.com/ObserverOfTime/tree-sitter-arduino"
|
||||
|
||||
[tree-sitter-grammar-astro]
|
||||
fetch.git = "https://github.com/virchau13/tree-sitter-astro"
|
||||
src.git = "https://github.com/virchau13/tree-sitter-astro"
|
||||
|
||||
[tree-sitter-grammar-awk]
|
||||
fetch.git = "https://github.com/Beaglefoot/tree-sitter-awk"
|
||||
src.git = "https://github.com/Beaglefoot/tree-sitter-awk"
|
||||
|
||||
[tree-sitter-grammar-bash]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-bash"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-bash"
|
||||
|
||||
[tree-sitter-grammar-bass]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-bass"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-bass"
|
||||
|
||||
[tree-sitter-grammar-beancount]
|
||||
fetch.git = "https://github.com/polarmutex/tree-sitter-beancount"
|
||||
src.git = "https://github.com/polarmutex/tree-sitter-beancount"
|
||||
|
||||
[tree-sitter-grammar-bibtex]
|
||||
fetch.git = "https://github.com/latex-lsp/tree-sitter-bibtex"
|
||||
src.git = "https://github.com/latex-lsp/tree-sitter-bibtex"
|
||||
|
||||
[tree-sitter-grammar-bicep]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-bicep"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-bicep"
|
||||
|
||||
[tree-sitter-grammar-bitbake]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-bitbake"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-bitbake"
|
||||
|
||||
[tree-sitter-grammar-blueprint]
|
||||
fetch.git = "https://gitlab.com/gabmus/tree-sitter-blueprint.git"
|
||||
src.git = "https://gitlab.com/gabmus/tree-sitter-blueprint.git"
|
||||
|
||||
[tree-sitter-grammar-c]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-c"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-c"
|
||||
|
||||
[tree-sitter-grammar-c_sharp]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-c-sharp"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-c-sharp"
|
||||
|
||||
[tree-sitter-grammar-cairo]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-cairo"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-cairo"
|
||||
|
||||
[tree-sitter-grammar-capnp]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-capnp"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-capnp"
|
||||
|
||||
[tree-sitter-grammar-chatito]
|
||||
fetch.git = "https://github.com/ObserverOfTime/tree-sitter-chatito"
|
||||
src.git = "https://github.com/ObserverOfTime/tree-sitter-chatito"
|
||||
|
||||
[tree-sitter-grammar-clojure]
|
||||
fetch.git = "https://github.com/sogaiu/tree-sitter-clojure"
|
||||
src.git = "https://github.com/sogaiu/tree-sitter-clojure"
|
||||
|
||||
[tree-sitter-grammar-cmake]
|
||||
fetch.git = "https://github.com/uyha/tree-sitter-cmake"
|
||||
src.git = "https://github.com/uyha/tree-sitter-cmake"
|
||||
|
||||
[tree-sitter-grammar-comment]
|
||||
fetch.git = "https://github.com/stsewd/tree-sitter-comment"
|
||||
src.git = "https://github.com/stsewd/tree-sitter-comment"
|
||||
|
||||
[tree-sitter-grammar-commonlisp]
|
||||
fetch.git = "https://github.com/theHamsta/tree-sitter-commonlisp"
|
||||
src.git = "https://github.com/theHamsta/tree-sitter-commonlisp"
|
||||
|
||||
[tree-sitter-grammar-cooklang]
|
||||
fetch.git = "https://github.com/addcninblue/tree-sitter-cooklang"
|
||||
src.git = "https://github.com/addcninblue/tree-sitter-cooklang"
|
||||
|
||||
[tree-sitter-grammar-corn]
|
||||
fetch.git = "https://github.com/jakestanger/tree-sitter-corn"
|
||||
src.git = "https://github.com/jakestanger/tree-sitter-corn"
|
||||
|
||||
[tree-sitter-grammar-cpon]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-cpon"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-cpon"
|
||||
|
||||
[tree-sitter-grammar-cpp]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-cpp"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-cpp"
|
||||
|
||||
[tree-sitter-grammar-css]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-css"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-css"
|
||||
|
||||
[tree-sitter-grammar-csv]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-csv"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-csv"
|
||||
passthru = { location = "csv" }
|
||||
|
||||
[tree-sitter-grammar-cuda]
|
||||
fetch.git = "https://github.com/theHamsta/tree-sitter-cuda"
|
||||
src.git = "https://github.com/theHamsta/tree-sitter-cuda"
|
||||
|
||||
[tree-sitter-grammar-cue]
|
||||
fetch.git = "https://github.com/eonpatapon/tree-sitter-cue"
|
||||
src.git = "https://github.com/eonpatapon/tree-sitter-cue"
|
||||
|
||||
[tree-sitter-grammar-d]
|
||||
fetch.git = "https://github.com/CyberShadow/tree-sitter-d"
|
||||
src.git = "https://github.com/CyberShadow/tree-sitter-d"
|
||||
|
||||
[tree-sitter-grammar-dart]
|
||||
fetch.git = "https://github.com/UserNobody14/tree-sitter-dart"
|
||||
src.git = "https://github.com/UserNobody14/tree-sitter-dart"
|
||||
|
||||
[tree-sitter-grammar-devicetree]
|
||||
fetch.git = "https://github.com/joelspadin/tree-sitter-devicetree"
|
||||
src.git = "https://github.com/joelspadin/tree-sitter-devicetree"
|
||||
|
||||
[tree-sitter-grammar-dhall]
|
||||
fetch.git = "https://github.com/jbellerb/tree-sitter-dhall"
|
||||
src.git = "https://github.com/jbellerb/tree-sitter-dhall"
|
||||
|
||||
[tree-sitter-grammar-diff]
|
||||
fetch.git = "https://github.com/the-mikedavis/tree-sitter-diff"
|
||||
src.git = "https://github.com/the-mikedavis/tree-sitter-diff"
|
||||
|
||||
[tree-sitter-grammar-dockerfile]
|
||||
fetch.git = "https://github.com/camdencheek/tree-sitter-dockerfile"
|
||||
src.git = "https://github.com/camdencheek/tree-sitter-dockerfile"
|
||||
|
||||
[tree-sitter-grammar-dot]
|
||||
fetch.git = "https://github.com/rydesun/tree-sitter-dot"
|
||||
src.git = "https://github.com/rydesun/tree-sitter-dot"
|
||||
|
||||
[tree-sitter-grammar-doxygen]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-doxygen"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-doxygen"
|
||||
|
||||
[tree-sitter-grammar-dtd]
|
||||
fetch.git = "https://github.com/ObserverOfTime/tree-sitter-xml"
|
||||
src.git = "https://github.com/ObserverOfTime/tree-sitter-xml"
|
||||
passthru = { location = "tree-sitter-dtd" }
|
||||
|
||||
[tree-sitter-grammar-ebnf]
|
||||
fetch.git = "https://github.com/RubixDev/ebnf"
|
||||
src.git = "https://github.com/RubixDev/ebnf"
|
||||
passthru = { location = "crates/tree-sitter-ebnf" }
|
||||
|
||||
[tree-sitter-grammar-eex]
|
||||
fetch.git = "https://github.com/connorlay/tree-sitter-eex"
|
||||
src.git = "https://github.com/connorlay/tree-sitter-eex"
|
||||
|
||||
[tree-sitter-grammar-elixir]
|
||||
fetch.git = "https://github.com/elixir-lang/tree-sitter-elixir"
|
||||
src.git = "https://github.com/elixir-lang/tree-sitter-elixir"
|
||||
|
||||
[tree-sitter-grammar-elm]
|
||||
fetch.git = "https://github.com/elm-tooling/tree-sitter-elm"
|
||||
src.git = "https://github.com/elm-tooling/tree-sitter-elm"
|
||||
|
||||
[tree-sitter-grammar-elsa]
|
||||
fetch.git = "https://github.com/glapa-grossklag/tree-sitter-elsa"
|
||||
src.git = "https://github.com/glapa-grossklag/tree-sitter-elsa"
|
||||
|
||||
[tree-sitter-grammar-elvish]
|
||||
fetch.git = "https://github.com/elves/tree-sitter-elvish"
|
||||
src.git = "https://github.com/elves/tree-sitter-elvish"
|
||||
|
||||
[tree-sitter-grammar-embedded_template]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-embedded-template"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-embedded-template"
|
||||
|
||||
[tree-sitter-grammar-erlang]
|
||||
fetch.git = "https://github.com/WhatsApp/tree-sitter-erlang"
|
||||
src.git = "https://github.com/WhatsApp/tree-sitter-erlang"
|
||||
|
||||
[tree-sitter-grammar-fennel]
|
||||
fetch.git = "https://github.com/travonted/tree-sitter-fennel"
|
||||
src.git = "https://github.com/travonted/tree-sitter-fennel"
|
||||
|
||||
[tree-sitter-grammar-firrtl]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-firrtl"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-firrtl"
|
||||
|
||||
[tree-sitter-grammar-fish]
|
||||
fetch.git = "https://github.com/ram02z/tree-sitter-fish"
|
||||
src.git = "https://github.com/ram02z/tree-sitter-fish"
|
||||
|
||||
[tree-sitter-grammar-foam]
|
||||
fetch.git = "https://github.com/FoamScience/tree-sitter-foam"
|
||||
src.git = "https://github.com/FoamScience/tree-sitter-foam"
|
||||
|
||||
[tree-sitter-grammar-forth]
|
||||
fetch.git = "https://github.com/AlexanderBrevig/tree-sitter-forth"
|
||||
src.git = "https://github.com/AlexanderBrevig/tree-sitter-forth"
|
||||
|
||||
[tree-sitter-grammar-fortran]
|
||||
fetch.git = "https://github.com/stadelmanma/tree-sitter-fortran"
|
||||
src.git = "https://github.com/stadelmanma/tree-sitter-fortran"
|
||||
|
||||
[tree-sitter-grammar-fsh]
|
||||
fetch.git = "https://github.com/mgramigna/tree-sitter-fsh"
|
||||
src.git = "https://github.com/mgramigna/tree-sitter-fsh"
|
||||
|
||||
[tree-sitter-grammar-func]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-func"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-func"
|
||||
|
||||
[tree-sitter-grammar-fusion]
|
||||
fetch.git = "https://gitlab.com/jirgn/tree-sitter-fusion.git"
|
||||
src.git = "https://gitlab.com/jirgn/tree-sitter-fusion.git"
|
||||
|
||||
[tree-sitter-grammar-gdscript]
|
||||
fetch.git = "https://github.com/PrestonKnopp/tree-sitter-gdscript"
|
||||
src.git = "https://github.com/PrestonKnopp/tree-sitter-gdscript"
|
||||
|
||||
[tree-sitter-grammar-git_config]
|
||||
fetch.git = "https://github.com/the-mikedavis/tree-sitter-git-config"
|
||||
src.git = "https://github.com/the-mikedavis/tree-sitter-git-config"
|
||||
|
||||
[tree-sitter-grammar-git_rebase]
|
||||
fetch.git = "https://github.com/the-mikedavis/tree-sitter-git-rebase"
|
||||
src.git = "https://github.com/the-mikedavis/tree-sitter-git-rebase"
|
||||
|
||||
[tree-sitter-grammar-gitattributes]
|
||||
fetch.git = "https://github.com/ObserverOfTime/tree-sitter-gitattributes"
|
||||
src.git = "https://github.com/ObserverOfTime/tree-sitter-gitattributes"
|
||||
|
||||
[tree-sitter-grammar-gitcommit]
|
||||
fetch.git = "https://github.com/gbprod/tree-sitter-gitcommit"
|
||||
src.git = "https://github.com/gbprod/tree-sitter-gitcommit"
|
||||
|
||||
[tree-sitter-grammar-gitignore]
|
||||
fetch.git = "https://github.com/shunsambongi/tree-sitter-gitignore"
|
||||
src.git = "https://github.com/shunsambongi/tree-sitter-gitignore"
|
||||
|
||||
[tree-sitter-grammar-gleam]
|
||||
fetch.git = "https://github.com/gleam-lang/tree-sitter-gleam"
|
||||
src.git = "https://github.com/gleam-lang/tree-sitter-gleam"
|
||||
|
||||
[tree-sitter-grammar-glimmer]
|
||||
fetch.git = "https://github.com/alexlafroscia/tree-sitter-glimmer"
|
||||
src.git = "https://github.com/alexlafroscia/tree-sitter-glimmer"
|
||||
|
||||
[tree-sitter-grammar-glsl]
|
||||
fetch.git = "https://github.com/theHamsta/tree-sitter-glsl"
|
||||
src.git = "https://github.com/theHamsta/tree-sitter-glsl"
|
||||
|
||||
[tree-sitter-grammar-go]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-go"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-go"
|
||||
|
||||
[tree-sitter-grammar-godot_resource]
|
||||
fetch.git = "https://github.com/PrestonKnopp/tree-sitter-godot-resource"
|
||||
src.git = "https://github.com/PrestonKnopp/tree-sitter-godot-resource"
|
||||
|
||||
[tree-sitter-grammar-gomod]
|
||||
fetch.git = "https://github.com/camdencheek/tree-sitter-go-mod"
|
||||
src.git = "https://github.com/camdencheek/tree-sitter-go-mod"
|
||||
|
||||
[tree-sitter-grammar-gosum]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-go-sum"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-go-sum"
|
||||
|
||||
[tree-sitter-grammar-gowork]
|
||||
fetch.git = "https://github.com/omertuc/tree-sitter-go-work"
|
||||
src.git = "https://github.com/omertuc/tree-sitter-go-work"
|
||||
|
||||
[tree-sitter-grammar-gpg]
|
||||
fetch.git = "https://github.com/ObserverOfTime/tree-sitter-gpg-config"
|
||||
src.git = "https://github.com/ObserverOfTime/tree-sitter-gpg-config"
|
||||
|
||||
[tree-sitter-grammar-graphql]
|
||||
fetch.git = "https://github.com/bkegley/tree-sitter-graphql"
|
||||
src.git = "https://github.com/bkegley/tree-sitter-graphql"
|
||||
|
||||
[tree-sitter-grammar-groovy]
|
||||
fetch.git = "https://github.com/Decodetalkers/tree-sitter-groovy"
|
||||
src.git = "https://github.com/Decodetalkers/tree-sitter-groovy"
|
||||
src.branch = "gh-pages"
|
||||
|
||||
[tree-sitter-grammar-hack]
|
||||
fetch.git = "https://github.com/slackhq/tree-sitter-hack"
|
||||
src.git = "https://github.com/slackhq/tree-sitter-hack"
|
||||
|
||||
[tree-sitter-grammar-hare]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-hare"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-hare"
|
||||
|
||||
[tree-sitter-grammar-haskell]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-haskell"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-haskell"
|
||||
|
||||
[tree-sitter-grammar-haskell_persistent]
|
||||
fetch.git = "https://github.com/MercuryTechnologies/tree-sitter-haskell-persistent"
|
||||
src.git = "https://github.com/MercuryTechnologies/tree-sitter-haskell-persistent"
|
||||
|
||||
[tree-sitter-grammar-hcl]
|
||||
fetch.git = "https://github.com/MichaHoffmann/tree-sitter-hcl"
|
||||
src.git = "https://github.com/MichaHoffmann/tree-sitter-hcl"
|
||||
|
||||
[tree-sitter-grammar-heex]
|
||||
fetch.git = "https://github.com/connorlay/tree-sitter-heex"
|
||||
src.git = "https://github.com/connorlay/tree-sitter-heex"
|
||||
|
||||
[tree-sitter-grammar-hjson]
|
||||
fetch.git = "https://github.com/winston0410/tree-sitter-hjson"
|
||||
src.git = "https://github.com/winston0410/tree-sitter-hjson"
|
||||
|
||||
[tree-sitter-grammar-hlsl]
|
||||
fetch.git = "https://github.com/theHamsta/tree-sitter-hlsl"
|
||||
src.git = "https://github.com/theHamsta/tree-sitter-hlsl"
|
||||
|
||||
[tree-sitter-grammar-hocon]
|
||||
fetch.git = "https://github.com/antosha417/tree-sitter-hocon"
|
||||
src.git = "https://github.com/antosha417/tree-sitter-hocon"
|
||||
|
||||
[tree-sitter-grammar-hoon]
|
||||
fetch.git = "https://github.com/urbit-pilled/tree-sitter-hoon"
|
||||
src.git = "https://github.com/urbit-pilled/tree-sitter-hoon"
|
||||
|
||||
[tree-sitter-grammar-html]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-html"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-html"
|
||||
|
||||
[tree-sitter-grammar-htmldjango]
|
||||
fetch.git = "https://github.com/interdependence/tree-sitter-htmldjango"
|
||||
src.git = "https://github.com/interdependence/tree-sitter-htmldjango"
|
||||
|
||||
[tree-sitter-grammar-http]
|
||||
fetch.git = "https://github.com/rest-nvim/tree-sitter-http"
|
||||
src.git = "https://github.com/rest-nvim/tree-sitter-http"
|
||||
|
||||
[tree-sitter-grammar-hurl]
|
||||
fetch.git = "https://github.com/pfeiferj/tree-sitter-hurl"
|
||||
src.git = "https://github.com/pfeiferj/tree-sitter-hurl"
|
||||
|
||||
[tree-sitter-grammar-ini]
|
||||
fetch.git = "https://github.com/justinmk/tree-sitter-ini"
|
||||
src.git = "https://github.com/justinmk/tree-sitter-ini"
|
||||
|
||||
[tree-sitter-grammar-ispc]
|
||||
fetch.git = "https://github.com/fab4100/tree-sitter-ispc"
|
||||
src.git = "https://github.com/fab4100/tree-sitter-ispc"
|
||||
|
||||
[tree-sitter-grammar-janet_simple]
|
||||
fetch.git = "https://github.com/sogaiu/tree-sitter-janet-simple"
|
||||
src.git = "https://github.com/sogaiu/tree-sitter-janet-simple"
|
||||
|
||||
[tree-sitter-grammar-java]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-java"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-java"
|
||||
|
||||
[tree-sitter-grammar-javascript]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-javascript"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-javascript"
|
||||
|
||||
[tree-sitter-grammar-jq]
|
||||
fetch.git = "https://github.com/flurie/tree-sitter-jq"
|
||||
src.git = "https://github.com/flurie/tree-sitter-jq"
|
||||
|
||||
[tree-sitter-grammar-jsdoc]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-jsdoc"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-jsdoc"
|
||||
|
||||
[tree-sitter-grammar-json]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-json"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-json"
|
||||
|
||||
[tree-sitter-grammar-json5]
|
||||
fetch.git = "https://github.com/Joakker/tree-sitter-json5"
|
||||
src.git = "https://github.com/Joakker/tree-sitter-json5"
|
||||
|
||||
[tree-sitter-grammar-jsonc]
|
||||
fetch.git = "https://gitlab.com/WhyNotHugo/tree-sitter-jsonc.git"
|
||||
src.git = "https://gitlab.com/WhyNotHugo/tree-sitter-jsonc.git"
|
||||
|
||||
[tree-sitter-grammar-jsonnet]
|
||||
fetch.git = "https://github.com/sourcegraph/tree-sitter-jsonnet"
|
||||
src.git = "https://github.com/sourcegraph/tree-sitter-jsonnet"
|
||||
|
||||
[tree-sitter-grammar-julia]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-julia"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-julia"
|
||||
|
||||
[tree-sitter-grammar-kconfig]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-kconfig"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-kconfig"
|
||||
|
||||
[tree-sitter-grammar-kdl]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-kdl"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-kdl"
|
||||
|
||||
[tree-sitter-grammar-kotlin]
|
||||
fetch.git = "https://github.com/fwcd/tree-sitter-kotlin"
|
||||
src.git = "https://github.com/fwcd/tree-sitter-kotlin"
|
||||
|
||||
[tree-sitter-grammar-lalrpop]
|
||||
fetch.git = "https://github.com/traxys/tree-sitter-lalrpop"
|
||||
src.git = "https://github.com/traxys/tree-sitter-lalrpop"
|
||||
|
||||
[tree-sitter-grammar-latex]
|
||||
fetch.git = "https://github.com/latex-lsp/tree-sitter-latex"
|
||||
src.git = "https://github.com/latex-lsp/tree-sitter-latex"
|
||||
|
||||
[tree-sitter-grammar-ledger]
|
||||
fetch.git = "https://github.com/cbarrete/tree-sitter-ledger"
|
||||
src.git = "https://github.com/cbarrete/tree-sitter-ledger"
|
||||
|
||||
[tree-sitter-grammar-llvm]
|
||||
fetch.git = "https://github.com/benwilliamgraham/tree-sitter-llvm"
|
||||
src.git = "https://github.com/benwilliamgraham/tree-sitter-llvm"
|
||||
|
||||
[tree-sitter-grammar-lua]
|
||||
fetch.git = "https://github.com/MunifTanjim/tree-sitter-lua"
|
||||
src.git = "https://github.com/MunifTanjim/tree-sitter-lua"
|
||||
|
||||
[tree-sitter-grammar-luadoc]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-luadoc"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-luadoc"
|
||||
|
||||
[tree-sitter-grammar-luap]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-luap"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-luap"
|
||||
|
||||
[tree-sitter-grammar-luau]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-luau"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-luau"
|
||||
|
||||
[tree-sitter-grammar-m68k]
|
||||
fetch.git = "https://github.com/grahambates/tree-sitter-m68k"
|
||||
src.git = "https://github.com/grahambates/tree-sitter-m68k"
|
||||
|
||||
[tree-sitter-grammar-make]
|
||||
fetch.git = "https://github.com/alemuller/tree-sitter-make"
|
||||
src.git = "https://github.com/alemuller/tree-sitter-make"
|
||||
|
||||
[tree-sitter-grammar-markdown]
|
||||
fetch.git = "https://github.com/MDeiml/tree-sitter-markdown"
|
||||
src.git = "https://github.com/MDeiml/tree-sitter-markdown"
|
||||
passthru = { location = "tree-sitter-markdown" }
|
||||
|
||||
[tree-sitter-grammar-markdown_inline]
|
||||
fetch.git = "https://github.com/MDeiml/tree-sitter-markdown"
|
||||
src.git = "https://github.com/MDeiml/tree-sitter-markdown"
|
||||
passthru = { location = "tree-sitter-markdown-inline" }
|
||||
|
||||
[tree-sitter-grammar-matlab]
|
||||
fetch.git = "https://github.com/acristoffers/tree-sitter-matlab"
|
||||
src.git = "https://github.com/acristoffers/tree-sitter-matlab"
|
||||
|
||||
[tree-sitter-grammar-menhir]
|
||||
fetch.git = "https://github.com/Kerl13/tree-sitter-menhir"
|
||||
src.git = "https://github.com/Kerl13/tree-sitter-menhir"
|
||||
|
||||
[tree-sitter-grammar-mermaid]
|
||||
fetch.git = "https://github.com/monaqa/tree-sitter-mermaid"
|
||||
src.git = "https://github.com/monaqa/tree-sitter-mermaid"
|
||||
|
||||
[tree-sitter-grammar-meson]
|
||||
fetch.git = "https://github.com/Decodetalkers/tree-sitter-meson"
|
||||
src.git = "https://github.com/Decodetalkers/tree-sitter-meson"
|
||||
|
||||
[tree-sitter-grammar-mlir]
|
||||
fetch.git = "https://github.com/artagnon/tree-sitter-mlir"
|
||||
src.git = "https://github.com/artagnon/tree-sitter-mlir"
|
||||
|
||||
[tree-sitter-grammar-nickel]
|
||||
fetch.git = "https://github.com/nickel-lang/tree-sitter-nickel"
|
||||
src.git = "https://github.com/nickel-lang/tree-sitter-nickel"
|
||||
|
||||
[tree-sitter-grammar-ninja]
|
||||
fetch.git = "https://github.com/alemuller/tree-sitter-ninja"
|
||||
src.git = "https://github.com/alemuller/tree-sitter-ninja"
|
||||
|
||||
[tree-sitter-grammar-nix]
|
||||
fetch.git = "https://github.com/cstrahan/tree-sitter-nix"
|
||||
src.git = "https://github.com/cstrahan/tree-sitter-nix"
|
||||
|
||||
[tree-sitter-grammar-norg]
|
||||
fetch.git = "https://github.com/nvim-neorg/tree-sitter-norg"
|
||||
src.git = "https://github.com/nvim-neorg/tree-sitter-norg"
|
||||
src.branch = "main"
|
||||
|
||||
[tree-sitter-grammar-norg_meta]
|
||||
fetch.git = "https://github.com/nvim-neorg/tree-sitter-norg-meta"
|
||||
src.git = "https://github.com/nvim-neorg/tree-sitter-norg-meta"
|
||||
src.branch = "main"
|
||||
|
||||
[tree-sitter-grammar-nqc]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-nqc"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-nqc"
|
||||
|
||||
[tree-sitter-grammar-objc]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-objc"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-objc"
|
||||
|
||||
[tree-sitter-grammar-ocaml]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-ocaml"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-ocaml"
|
||||
passthru = { location = "ocaml" }
|
||||
|
||||
[tree-sitter-grammar-ocaml_interface]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-ocaml"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-ocaml"
|
||||
passthru = { location = "interface" }
|
||||
|
||||
[tree-sitter-grammar-ocamllex]
|
||||
fetch.git = "https://github.com/atom-ocaml/tree-sitter-ocamllex"
|
||||
src.git = "https://github.com/atom-ocaml/tree-sitter-ocamllex"
|
||||
|
||||
[tree-sitter-grammar-odin]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-odin"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-odin"
|
||||
|
||||
[tree-sitter-grammar-org]
|
||||
fetch.git = "https://github.com/milisims/tree-sitter-org"
|
||||
src.git = "https://github.com/milisims/tree-sitter-org"
|
||||
|
||||
[tree-sitter-grammar-pascal]
|
||||
fetch.git = "https://github.com/Isopod/tree-sitter-pascal.git"
|
||||
src.git = "https://github.com/Isopod/tree-sitter-pascal.git"
|
||||
|
||||
[tree-sitter-grammar-passwd]
|
||||
fetch.git = "https://github.com/ath3/tree-sitter-passwd"
|
||||
src.git = "https://github.com/ath3/tree-sitter-passwd"
|
||||
|
||||
[tree-sitter-grammar-pem]
|
||||
fetch.git = "https://github.com/ObserverOfTime/tree-sitter-pem"
|
||||
src.git = "https://github.com/ObserverOfTime/tree-sitter-pem"
|
||||
|
||||
[tree-sitter-grammar-perl]
|
||||
fetch.git = "https://github.com/ganezdragon/tree-sitter-perl"
|
||||
src.git = "https://github.com/ganezdragon/tree-sitter-perl"
|
||||
|
||||
[tree-sitter-grammar-php]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-php"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-php"
|
||||
|
||||
[tree-sitter-grammar-phpdoc]
|
||||
fetch.git = "https://github.com/claytonrcarter/tree-sitter-phpdoc"
|
||||
src.git = "https://github.com/claytonrcarter/tree-sitter-phpdoc"
|
||||
|
||||
[tree-sitter-grammar-pioasm]
|
||||
fetch.git = "https://github.com/leo60228/tree-sitter-pioasm"
|
||||
src.git = "https://github.com/leo60228/tree-sitter-pioasm"
|
||||
|
||||
[tree-sitter-grammar-po]
|
||||
fetch.git = "https://github.com/erasin/tree-sitter-po"
|
||||
src.git = "https://github.com/erasin/tree-sitter-po"
|
||||
|
||||
[tree-sitter-grammar-poe_filter]
|
||||
fetch.git = "https://github.com/ObserverOfTime/tree-sitter-poe-filter"
|
||||
src.git = "https://github.com/ObserverOfTime/tree-sitter-poe-filter"
|
||||
|
||||
[tree-sitter-grammar-pony]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-pony"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-pony"
|
||||
|
||||
[tree-sitter-grammar-prisma]
|
||||
fetch.git = "https://github.com/victorhqc/tree-sitter-prisma"
|
||||
src.git = "https://github.com/victorhqc/tree-sitter-prisma"
|
||||
|
||||
[tree-sitter-grammar-promql]
|
||||
fetch.git = "https://github.com/MichaHoffmann/tree-sitter-promql"
|
||||
src.git = "https://github.com/MichaHoffmann/tree-sitter-promql"
|
||||
|
||||
[tree-sitter-grammar-proto]
|
||||
fetch.git = "https://github.com/treywood/tree-sitter-proto"
|
||||
src.git = "https://github.com/treywood/tree-sitter-proto"
|
||||
|
||||
[tree-sitter-grammar-prql]
|
||||
fetch.git = "https://github.com/PRQL/tree-sitter-prql"
|
||||
src.git = "https://github.com/PRQL/tree-sitter-prql"
|
||||
|
||||
[tree-sitter-grammar-psv]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-csv"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-csv"
|
||||
passthru = { location = "psv" }
|
||||
|
||||
[tree-sitter-grammar-pug]
|
||||
fetch.git = "https://github.com/zealot128/tree-sitter-pug"
|
||||
src.git = "https://github.com/zealot128/tree-sitter-pug"
|
||||
|
||||
[tree-sitter-grammar-puppet]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-puppet"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-puppet"
|
||||
|
||||
[tree-sitter-grammar-pymanifest]
|
||||
fetch.git = "https://github.com/ObserverOfTime/tree-sitter-pymanifest"
|
||||
src.git = "https://github.com/ObserverOfTime/tree-sitter-pymanifest"
|
||||
|
||||
[tree-sitter-grammar-python]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-python"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-python"
|
||||
|
||||
[tree-sitter-grammar-ql]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-ql"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-ql"
|
||||
|
||||
[tree-sitter-grammar-qmldir]
|
||||
fetch.git = "https://github.com/Decodetalkers/tree-sitter-qmldir"
|
||||
src.git = "https://github.com/Decodetalkers/tree-sitter-qmldir"
|
||||
|
||||
[tree-sitter-grammar-qmljs]
|
||||
fetch.git = "https://github.com/yuja/tree-sitter-qmljs"
|
||||
src.git = "https://github.com/yuja/tree-sitter-qmljs"
|
||||
|
||||
[tree-sitter-grammar-query]
|
||||
fetch.git = "https://github.com/nvim-treesitter/tree-sitter-query"
|
||||
src.git = "https://github.com/nvim-treesitter/tree-sitter-query"
|
||||
|
||||
[tree-sitter-grammar-r]
|
||||
fetch.git = "https://github.com/r-lib/tree-sitter-r"
|
||||
src.git = "https://github.com/r-lib/tree-sitter-r"
|
||||
|
||||
[tree-sitter-grammar-racket]
|
||||
fetch.git = "https://github.com/6cdh/tree-sitter-racket"
|
||||
src.git = "https://github.com/6cdh/tree-sitter-racket"
|
||||
|
||||
[tree-sitter-grammar-rasi]
|
||||
fetch.git = "https://github.com/Fymyte/tree-sitter-rasi"
|
||||
src.git = "https://github.com/Fymyte/tree-sitter-rasi"
|
||||
|
||||
[tree-sitter-grammar-re2c]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-re2c"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-re2c"
|
||||
|
||||
[tree-sitter-grammar-regex]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-regex"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-regex"
|
||||
|
||||
[tree-sitter-grammar-rego]
|
||||
fetch.git = "https://github.com/FallenAngel97/tree-sitter-rego"
|
||||
src.git = "https://github.com/FallenAngel97/tree-sitter-rego"
|
||||
|
||||
[tree-sitter-grammar-requirements]
|
||||
fetch.git = "https://github.com/ObserverOfTime/tree-sitter-requirements"
|
||||
src.git = "https://github.com/ObserverOfTime/tree-sitter-requirements"
|
||||
|
||||
[tree-sitter-grammar-rnoweb]
|
||||
fetch.git = "https://github.com/bamonroe/tree-sitter-rnoweb"
|
||||
src.git = "https://github.com/bamonroe/tree-sitter-rnoweb"
|
||||
|
||||
[tree-sitter-grammar-robot]
|
||||
fetch.git = "https://github.com/Hubro/tree-sitter-robot"
|
||||
src.git = "https://github.com/Hubro/tree-sitter-robot"
|
||||
|
||||
[tree-sitter-grammar-ron]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-ron"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-ron"
|
||||
|
||||
[tree-sitter-grammar-rst]
|
||||
fetch.git = "https://github.com/stsewd/tree-sitter-rst"
|
||||
src.git = "https://github.com/stsewd/tree-sitter-rst"
|
||||
|
||||
[tree-sitter-grammar-ruby]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-ruby"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-ruby"
|
||||
|
||||
[tree-sitter-grammar-rust]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-rust"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-rust"
|
||||
|
||||
[tree-sitter-grammar-scala]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-scala"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-scala"
|
||||
|
||||
[tree-sitter-grammar-scfg]
|
||||
fetch.git = "https://git.sr.ht/~rockorager/tree-sitter-scfg"
|
||||
src.git = "https://git.sr.ht/~rockorager/tree-sitter-scfg"
|
||||
|
||||
[tree-sitter-grammar-scheme]
|
||||
fetch.git = "https://github.com/6cdh/tree-sitter-scheme"
|
||||
src.git = "https://github.com/6cdh/tree-sitter-scheme"
|
||||
|
||||
[tree-sitter-grammar-scss]
|
||||
fetch.git = "https://github.com/serenadeai/tree-sitter-scss"
|
||||
src.git = "https://github.com/serenadeai/tree-sitter-scss"
|
||||
|
||||
[tree-sitter-grammar-slint]
|
||||
fetch.git = "https://github.com/jrmoulton/tree-sitter-slint"
|
||||
src.git = "https://github.com/jrmoulton/tree-sitter-slint"
|
||||
|
||||
[tree-sitter-grammar-smali]
|
||||
fetch.git = "https://git.sr.ht/~yotam/tree-sitter-smali"
|
||||
src.git = "https://git.sr.ht/~yotam/tree-sitter-smali"
|
||||
|
||||
[tree-sitter-grammar-smithy]
|
||||
fetch.git = "https://github.com/indoorvivants/tree-sitter-smithy"
|
||||
src.git = "https://github.com/indoorvivants/tree-sitter-smithy"
|
||||
|
||||
[tree-sitter-grammar-solidity]
|
||||
fetch.git = "https://github.com/JoranHonig/tree-sitter-solidity"
|
||||
src.git = "https://github.com/JoranHonig/tree-sitter-solidity"
|
||||
|
||||
[tree-sitter-grammar-sparql]
|
||||
fetch.git = "https://github.com/BonaBeavis/tree-sitter-sparql"
|
||||
src.git = "https://github.com/BonaBeavis/tree-sitter-sparql"
|
||||
|
||||
[tree-sitter-grammar-sql]
|
||||
fetch.git = "https://github.com/derekstride/tree-sitter-sql"
|
||||
src.git = "https://github.com/derekstride/tree-sitter-sql"
|
||||
src.branch = "gh-pages"
|
||||
|
||||
[tree-sitter-grammar-squirrel]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-squirrel"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-squirrel"
|
||||
|
||||
[tree-sitter-grammar-starlark]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-starlark"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-starlark"
|
||||
|
||||
[tree-sitter-grammar-strace]
|
||||
fetch.git = "https://github.com/sigmaSd/tree-sitter-strace"
|
||||
src.git = "https://github.com/sigmaSd/tree-sitter-strace"
|
||||
|
||||
[tree-sitter-grammar-supercollider]
|
||||
fetch.git = "https://github.com/madskjeldgaard/tree-sitter-supercollider"
|
||||
src.git = "https://github.com/madskjeldgaard/tree-sitter-supercollider"
|
||||
|
||||
[tree-sitter-grammar-surface]
|
||||
fetch.git = "https://github.com/connorlay/tree-sitter-surface"
|
||||
src.git = "https://github.com/connorlay/tree-sitter-surface"
|
||||
|
||||
[tree-sitter-grammar-svelte]
|
||||
fetch.git = "https://github.com/Himujjal/tree-sitter-svelte"
|
||||
src.git = "https://github.com/Himujjal/tree-sitter-svelte"
|
||||
|
||||
[tree-sitter-grammar-swift]
|
||||
fetch.git = "https://github.com/alex-pinkus/tree-sitter-swift"
|
||||
src.git = "https://github.com/alex-pinkus/tree-sitter-swift"
|
||||
|
||||
[tree-sitter-grammar-sxhkdrc]
|
||||
fetch.git = "https://github.com/RaafatTurki/tree-sitter-sxhkdrc"
|
||||
src.git = "https://github.com/RaafatTurki/tree-sitter-sxhkdrc"
|
||||
|
||||
[tree-sitter-grammar-systemtap]
|
||||
fetch.git = "https://github.com/ok-ryoko/tree-sitter-systemtap"
|
||||
src.git = "https://github.com/ok-ryoko/tree-sitter-systemtap"
|
||||
|
||||
[tree-sitter-grammar-t32]
|
||||
fetch.git = "https://gitlab.com/xasc/tree-sitter-t32.git"
|
||||
src.git = "https://gitlab.com/xasc/tree-sitter-t32.git"
|
||||
|
||||
[tree-sitter-grammar-tablegen]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-tablegen"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-tablegen"
|
||||
|
||||
[tree-sitter-grammar-teal]
|
||||
fetch.git = "https://github.com/euclidianAce/tree-sitter-teal"
|
||||
src.git = "https://github.com/euclidianAce/tree-sitter-teal"
|
||||
|
||||
[tree-sitter-grammar-terraform]
|
||||
fetch.git = "https://github.com/MichaHoffmann/tree-sitter-hcl"
|
||||
src.git = "https://github.com/MichaHoffmann/tree-sitter-hcl"
|
||||
passthru = { location = "dialects/terraform" }
|
||||
|
||||
[tree-sitter-grammar-thrift]
|
||||
fetch.git = "https://github.com/duskmoon314/tree-sitter-thrift"
|
||||
src.git = "https://github.com/duskmoon314/tree-sitter-thrift"
|
||||
|
||||
[tree-sitter-grammar-tiger]
|
||||
fetch.git = "https://github.com/ambroisie/tree-sitter-tiger"
|
||||
src.git = "https://github.com/ambroisie/tree-sitter-tiger"
|
||||
|
||||
[tree-sitter-grammar-tlaplus]
|
||||
fetch.git = "https://github.com/tlaplus-community/tree-sitter-tlaplus"
|
||||
src.git = "https://github.com/tlaplus-community/tree-sitter-tlaplus"
|
||||
|
||||
[tree-sitter-grammar-todotxt]
|
||||
fetch.git = "https://github.com/arnarg/tree-sitter-todotxt.git"
|
||||
src.git = "https://github.com/arnarg/tree-sitter-todotxt.git"
|
||||
|
||||
[tree-sitter-grammar-toml]
|
||||
fetch.git = "https://github.com/ikatyang/tree-sitter-toml"
|
||||
src.git = "https://github.com/ikatyang/tree-sitter-toml"
|
||||
|
||||
[tree-sitter-grammar-tsv]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-csv"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-csv"
|
||||
passthru = { location = "tsv" }
|
||||
|
||||
[tree-sitter-grammar-tsx]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-typescript"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-typescript"
|
||||
passthru = { location = "tsx" }
|
||||
|
||||
[tree-sitter-grammar-turtle]
|
||||
fetch.git = "https://github.com/BonaBeavis/tree-sitter-turtle"
|
||||
src.git = "https://github.com/BonaBeavis/tree-sitter-turtle"
|
||||
|
||||
[tree-sitter-grammar-twig]
|
||||
fetch.git = "https://github.com/gbprod/tree-sitter-twig"
|
||||
src.git = "https://github.com/gbprod/tree-sitter-twig"
|
||||
|
||||
[tree-sitter-grammar-typescript]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-typescript"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-typescript"
|
||||
passthru = { location = "typescript" }
|
||||
|
||||
[tree-sitter-grammar-ungrammar]
|
||||
fetch.git = "https://github.com/Philipp-M/tree-sitter-ungrammar"
|
||||
src.git = "https://github.com/Philipp-M/tree-sitter-ungrammar"
|
||||
|
||||
[tree-sitter-grammar-unison]
|
||||
fetch.git = "https://github.com/kylegoetz/tree-sitter-unison"
|
||||
src.git = "https://github.com/kylegoetz/tree-sitter-unison"
|
||||
|
||||
[tree-sitter-grammar-usd]
|
||||
fetch.git = "https://github.com/ColinKennedy/tree-sitter-usd"
|
||||
src.git = "https://github.com/ColinKennedy/tree-sitter-usd"
|
||||
|
||||
[tree-sitter-grammar-uxntal]
|
||||
fetch.git = "https://github.com/amaanq/tree-sitter-uxntal"
|
||||
src.git = "https://github.com/amaanq/tree-sitter-uxntal"
|
||||
|
||||
[tree-sitter-grammar-v]
|
||||
fetch.git = "https://github.com/v-analyzer/v-analyzer"
|
||||
src.git = "https://github.com/v-analyzer/v-analyzer"
|
||||
passthru = { location = "tree_sitter_v" }
|
||||
|
||||
[tree-sitter-grammar-vala]
|
||||
fetch.git = "https://github.com/vala-lang/tree-sitter-vala"
|
||||
src.git = "https://github.com/vala-lang/tree-sitter-vala"
|
||||
|
||||
[tree-sitter-grammar-verilog]
|
||||
fetch.git = "https://github.com/tree-sitter/tree-sitter-verilog"
|
||||
src.git = "https://github.com/tree-sitter/tree-sitter-verilog"
|
||||
|
||||
[tree-sitter-grammar-vhs]
|
||||
fetch.git = "https://github.com/charmbracelet/tree-sitter-vhs"
|
||||
src.git = "https://github.com/charmbracelet/tree-sitter-vhs"
|
||||
|
||||
[tree-sitter-grammar-vim]
|
||||
fetch.git = "https://github.com/neovim/tree-sitter-vim"
|
||||
src.git = "https://github.com/neovim/tree-sitter-vim"
|
||||
|
||||
[tree-sitter-grammar-vimdoc]
|
||||
fetch.git = "https://github.com/neovim/tree-sitter-vimdoc"
|
||||
src.git = "https://github.com/neovim/tree-sitter-vimdoc"
|
||||
|
||||
[tree-sitter-grammar-vue]
|
||||
fetch.git = "https://github.com/ikatyang/tree-sitter-vue"
|
||||
src.git = "https://github.com/ikatyang/tree-sitter-vue"
|
||||
|
||||
[tree-sitter-grammar-wgsl]
|
||||
fetch.git = "https://github.com/szebniok/tree-sitter-wgsl"
|
||||
src.git = "https://github.com/szebniok/tree-sitter-wgsl"
|
||||
|
||||
[tree-sitter-grammar-wgsl_bevy]
|
||||
fetch.git = "https://github.com/theHamsta/tree-sitter-wgsl-bevy"
|
||||
src.git = "https://github.com/theHamsta/tree-sitter-wgsl-bevy"
|
||||
|
||||
[tree-sitter-grammar-wing]
|
||||
fetch.git = "https://github.com/winglang/wing"
|
||||
src.git = "https://github.com/winglang/wing"
|
||||
passthru = { location = "libs/tree-sitter-wing" }
|
||||
|
||||
[tree-sitter-grammar-xml]
|
||||
fetch.git = "https://github.com/ObserverOfTime/tree-sitter-xml"
|
||||
src.git = "https://github.com/ObserverOfTime/tree-sitter-xml"
|
||||
passthru = { location = "tree-sitter-xml" }
|
||||
|
||||
[tree-sitter-grammar-yaml]
|
||||
fetch.git = "https://github.com/ikatyang/tree-sitter-yaml"
|
||||
src.git = "https://github.com/ikatyang/tree-sitter-yaml"
|
||||
|
||||
[tree-sitter-grammar-yang]
|
||||
fetch.git = "https://github.com/Hubro/tree-sitter-yang"
|
||||
src.git = "https://github.com/Hubro/tree-sitter-yang"
|
||||
|
||||
[tree-sitter-grammar-yuck]
|
||||
fetch.git = "https://github.com/Philipp-M/tree-sitter-yuck"
|
||||
src.git = "https://github.com/Philipp-M/tree-sitter-yuck"
|
||||
|
||||
[tree-sitter-grammar-zig]
|
||||
fetch.git = "https://github.com/maxxnino/tree-sitter-zig"
|
||||
src.git = "https://github.com/maxxnino/tree-sitter-zig"
|
||||
|
33
pkgs/snippets/default.nix
Normal file
33
pkgs/snippets/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
}: let
|
||||
snippets = builtins.readDir ./src;
|
||||
packageJSON = builtins.toJSON {
|
||||
name = "my-snippets";
|
||||
engines.vscode = ">=1.0.0";
|
||||
contributes.snippets =
|
||||
builtins.mapAttrs (name: _: let
|
||||
language = builtins.head (lib.splitString ".json" name);
|
||||
in {
|
||||
inherit language;
|
||||
path = "./snippets/${name}";
|
||||
})
|
||||
snippets;
|
||||
};
|
||||
in
|
||||
stdenvNoCC.mkDerivation (_: {
|
||||
pname = "my-snippets";
|
||||
version = "unstable";
|
||||
|
||||
src = ./src;
|
||||
|
||||
dontConfigure = true;
|
||||
dontInstall = true;
|
||||
|
||||
buildPhase = ''
|
||||
mkdir -p $out/snippets
|
||||
cp -r $src/* $out/snippets
|
||||
echo '${packageJSON}' > $out/package.json
|
||||
'';
|
||||
})
|
14
pkgs/snippets/src/nix.json
Normal file
14
pkgs/snippets/src/nix.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"mks": {
|
||||
"prefix": "mkshell",
|
||||
"body": [
|
||||
"{ pkgs ? import <nixpkgs> {} }:",
|
||||
"pkgs.mkShell {",
|
||||
" buildInputs = [",
|
||||
" $1",
|
||||
" ];",
|
||||
"}"
|
||||
],
|
||||
"description": "Nix development shell"
|
||||
}
|
||||
}
|
11
pkgs/telescope-fzf-native/default.nix
Normal file
11
pkgs/telescope-fzf-native/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
callPackage,
|
||||
vimUtils,
|
||||
}: let
|
||||
nvfetcher = (callPackage ../../_sources/generated.nix {}).telescope-fzf-native;
|
||||
in
|
||||
vimUtils.buildVimPlugin {
|
||||
inherit (nvfetcher) pname version src;
|
||||
|
||||
buildPhase = "make";
|
||||
}
|
98
plugins/alpha.lua
Normal file
98
plugins/alpha.lua
Normal file
|
@ -0,0 +1,98 @@
|
|||
return function()
|
||||
require("session_manager").setup({
|
||||
autoload_mode = "CurrentDir",
|
||||
})
|
||||
|
||||
local function apply_gradient_hl(text)
|
||||
local lines = {}
|
||||
for i, line in ipairs(text) do
|
||||
local tbl = {
|
||||
type = "text",
|
||||
val = line,
|
||||
opts = {
|
||||
hl = "HeaderGradient" .. i,
|
||||
shrink_margin = false,
|
||||
position = "center",
|
||||
},
|
||||
}
|
||||
table.insert(lines, tbl)
|
||||
end
|
||||
|
||||
return {
|
||||
type = "group",
|
||||
val = lines,
|
||||
opts = { position = "center" },
|
||||
}
|
||||
end
|
||||
|
||||
local alpha = require("alpha")
|
||||
local theta = require("alpha.themes.theta")
|
||||
local dashboard = require("alpha.themes.dashboard")
|
||||
|
||||
local header = {
|
||||
" '::::: ':::::. ::::' ",
|
||||
" ::::: '::::.::::: ",
|
||||
" .......:::::..... :::::::: ",
|
||||
" ::::::::::::::::::. :::::: ::::. ",
|
||||
" ::::::::::::::::::::: :::::. .::::' ",
|
||||
" ..... ::::' :::::' ",
|
||||
" ::::: '::' :::::' ",
|
||||
" ........::::: ' :::::::::::.",
|
||||
"::::::::::::: :::::::::::::",
|
||||
" ::::::::::: .. ::::: ",
|
||||
" .::::: .::: ::::: ",
|
||||
" .::::: ::::: ''''' ..... ",
|
||||
" ::::: ':::::. ......:::::::::::::' ",
|
||||
" ::: ::::::. ':::::::::::::::::' ",
|
||||
" .:::::::: ':::::::::: ",
|
||||
" .::::''::::. '::::. ",
|
||||
" .::::' ::::. '::::. ",
|
||||
" .:::: :::: '::::. ",
|
||||
" ",
|
||||
}
|
||||
|
||||
local buttons = {
|
||||
type = "group",
|
||||
position = "center",
|
||||
val = {
|
||||
dashboard.button("n", " New file", ":ene <bar> startinsert <cr>"),
|
||||
dashboard.button("SPC SPC", " Find file", ":Telescope find_files<cr>"),
|
||||
dashboard.button("SPC fs", " Live grep", ":Telescope live_grep<cr>"),
|
||||
dashboard.button("s", " Show sessions", ":SessionManager load_session<cr>"),
|
||||
dashboard.button("SPC fp", " Projects", ":Telescope project<CR>"),
|
||||
dashboard.button("q", " Quit", ":qa<CR>"),
|
||||
},
|
||||
}
|
||||
|
||||
local v = vim.version()
|
||||
local vStr = string.format("v%d.%d.%d", v.major, v.minor, v.patch)
|
||||
|
||||
local footer = {
|
||||
type = "group",
|
||||
position = "center",
|
||||
val = {
|
||||
{
|
||||
type = "text",
|
||||
val = "neovim " .. vStr,
|
||||
opts = { hl = "Comment", position = "center" },
|
||||
},
|
||||
{
|
||||
type = "text",
|
||||
val = require("lazy").stats().count .. " plugins",
|
||||
opts = { hl = "Comment", position = "center" },
|
||||
},
|
||||
},
|
||||
}
|
||||
dashboard.config.opts.noautocmd = true
|
||||
|
||||
theta.config.layout = {
|
||||
{ type = "padding", val = 4 },
|
||||
apply_gradient_hl(header),
|
||||
{ type = "padding", val = 1 },
|
||||
buttons,
|
||||
{ type = "padding", val = 1 },
|
||||
footer,
|
||||
}
|
||||
|
||||
alpha.setup(theta.config)
|
||||
end
|
7
plugins/autopairs.lua
Normal file
7
plugins/autopairs.lua
Normal file
|
@ -0,0 +1,7 @@
|
|||
return function()
|
||||
require("nvim-autopairs").setup()
|
||||
|
||||
local cmp = require("cmp")
|
||||
local cmp_autopairs = require("nvim-autopairs.completion.cmp")
|
||||
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done())
|
||||
end
|
63
plugins/bufferline.lua
Normal file
63
plugins/bufferline.lua
Normal file
|
@ -0,0 +1,63 @@
|
|||
return function()
|
||||
local bufferline = require("bufferline")
|
||||
local ctp = require("catppuccin.groups.integrations.bufferline").get()
|
||||
|
||||
local v = vim.version()
|
||||
local vStr = string.format("v%d.%d.%d", v.major, v.minor, v.patch)
|
||||
|
||||
bufferline.setup({
|
||||
highlights = ctp,
|
||||
options = {
|
||||
show_close_icon = false,
|
||||
show_buffer_close_icons = false,
|
||||
offsets = {
|
||||
{
|
||||
filetype = "NvimTree",
|
||||
text = " neovim " .. vStr,
|
||||
text_align = "left",
|
||||
separator = vim.g.bc.vert,
|
||||
},
|
||||
},
|
||||
left_mouse_command = "buffer %d",
|
||||
middle_mouse_command = "bdelete! %d",
|
||||
right_mouse_command = nil,
|
||||
numbers = "ordinal",
|
||||
},
|
||||
})
|
||||
|
||||
local nmap = function(key, cmd)
|
||||
vim.api.nvim_set_keymap("n", key, cmd, { noremap = true, silent = true })
|
||||
end
|
||||
|
||||
-- hop between buffers in order of the bar
|
||||
nmap("<A-,>", "<Cmd>BufferLineCyclePrev<CR>")
|
||||
nmap("<A-.>", "<Cmd>BufferLineCycleNext<CR>")
|
||||
-- Re-order to previous/next
|
||||
nmap("<A-<>", "<Cmd>BufferLineMovePrev<CR>")
|
||||
nmap("<A->>", "<Cmd>BufferLineMoveNext<CR>")
|
||||
-- stylua: ignore start
|
||||
-- Goto buffer in position...
|
||||
nmap("<A-1>", "<cmd>lua require('bufferline').go_to(1, true)<cr>")
|
||||
nmap("<A-2>", "<cmd>lua require('bufferline').go_to(2, true)<cr>")
|
||||
nmap("<A-3>", "<cmd>lua require('bufferline').go_to(3, true)<cr>")
|
||||
nmap("<A-4>", "<cmd>lua require('bufferline').go_to(4, true)<cr>")
|
||||
nmap("<A-5>", "<cmd>lua require('bufferline').go_to(5, true)<cr>")
|
||||
nmap("<A-6>", "<cmd>lua require('bufferline').go_to(6, true)<cr>")
|
||||
nmap("<A-7>", "<cmd>lua require('bufferline').go_to(7, true)<cr>")
|
||||
nmap("<A-8>", "<cmd>lua require('bufferline').go_to(8, true)<cr>")
|
||||
nmap("<A-9>", "<cmd>lua require('bufferline').go_to(9, true)<cr>")
|
||||
nmap("<A-0>", "<cmd>lua require('bufferline').go_to(-1, true)<cr>")
|
||||
-- stylua: ignore end
|
||||
-- Pin/unpin buffer
|
||||
nmap("<A-p>", "<Cmd>BufferLineTogglePin<CR>")
|
||||
-- Close buffer
|
||||
nmap("<A-x>", "<Cmd>bdelete<CR>")
|
||||
nmap("<A-X>", "<Cmd>bdelete!<CR>")
|
||||
-- create new buffer
|
||||
nmap("<A-c>", "<Cmd>enew<CR>")
|
||||
-- pick buffer
|
||||
nmap("<A-space>", "<Cmd>BufferLinePick<CR>")
|
||||
-- Sort automatically by...
|
||||
nmap("<Space>bd", "<Cmd>BufferLineSortByDirectory<CR>")
|
||||
nmap("<Space>bl", "<Cmd>BufferLineSortByExtension<CR>")
|
||||
end
|
50
plugins/catppuccin.lua
Normal file
50
plugins/catppuccin.lua
Normal file
|
@ -0,0 +1,50 @@
|
|||
return function()
|
||||
require("catppuccin").setup({
|
||||
flavour = "mocha",
|
||||
transparent_background = true,
|
||||
styles = {
|
||||
comments = { "italic" },
|
||||
},
|
||||
integrations = {
|
||||
treesitter = true,
|
||||
treesitter_context = true,
|
||||
native_lsp = {
|
||||
enabled = true,
|
||||
virtual_text = {
|
||||
errors = { "italic" },
|
||||
hints = { "italic" },
|
||||
warnings = { "italic" },
|
||||
information = { "italic" },
|
||||
},
|
||||
underlines = {
|
||||
errors = { "undercurl" },
|
||||
hints = { "undercurl" },
|
||||
warnings = { "undercurl" },
|
||||
information = { "undercurl" },
|
||||
},
|
||||
},
|
||||
cmp = true,
|
||||
lsp_trouble = true,
|
||||
nvimtree = {
|
||||
enabled = true,
|
||||
transparent_panel = true,
|
||||
},
|
||||
which_key = true,
|
||||
indent_blankline = {
|
||||
enabled = true,
|
||||
colored_indent_levels = false,
|
||||
},
|
||||
navic = {
|
||||
enabled = true,
|
||||
custom_bg = "NONE",
|
||||
},
|
||||
gitsigns = true,
|
||||
markdown = true,
|
||||
symbols_outline = true,
|
||||
ts_rainbow = true,
|
||||
notify = true,
|
||||
},
|
||||
})
|
||||
|
||||
vim.cmd.colorscheme("catppuccin")
|
||||
end
|
206
plugins/config/lua/isabel/lsp/init.lua
Normal file
206
plugins/config/lua/isabel/lsp/init.lua
Normal file
|
@ -0,0 +1,206 @@
|
|||
local neoconf_present, neoconf = pcall(require, "neoconf")
|
||||
neoconf.setup()
|
||||
|
||||
local lsp_present, lspconfig = pcall(require, "lspconfig")
|
||||
local cmp_present, cmp = pcall(require, "cmp")
|
||||
local navic_present, navic = pcall(require, "nvim-navic")
|
||||
local luasnip_present, luasnip = pcall(require, "luasnip")
|
||||
|
||||
if not (cmp_present and lsp_present and luasnip_present and neoconf_present) then
|
||||
vim.notify("lsp, cmp, luasnip not present", vim.log.levels.ERROR)
|
||||
return
|
||||
end
|
||||
|
||||
vim.opt.completeopt = "menu,menuone,noselect"
|
||||
require("luasnip.loaders.from_vscode").lazy_load()
|
||||
vim.lsp.set_log_level("trace")
|
||||
|
||||
-- border style
|
||||
require("lspconfig.ui.windows").default_options.border = "double"
|
||||
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, {
|
||||
border = vim.g.bc.style,
|
||||
})
|
||||
local cmp_borders = {
|
||||
border = {
|
||||
vim.g.bc.topleft,
|
||||
vim.g.bc.horiz,
|
||||
vim.g.bc.topright,
|
||||
vim.g.bc.vert,
|
||||
vim.g.bc.botright,
|
||||
vim.g.bc.horiz,
|
||||
vim.g.bc.botleft,
|
||||
vim.g.bc.vert,
|
||||
},
|
||||
winhighlight = "Normal:CmpPmenu,FloatBorder:CmpBorder,CursorLine:PmenuSel,Search:None",
|
||||
}
|
||||
|
||||
-- stylua: ignore
|
||||
local has_words_before = function()
|
||||
---@diagnostic disable-next-line: deprecated
|
||||
local line, col = unpack(vim.api.nvim_win_get_cursor(0))
|
||||
return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil
|
||||
end
|
||||
|
||||
cmp.setup({
|
||||
snippet = {
|
||||
expand = function(args)
|
||||
luasnip.lsp_expand(args.body)
|
||||
end,
|
||||
},
|
||||
window = {
|
||||
completion = cmp_borders,
|
||||
documentation = cmp_borders,
|
||||
},
|
||||
mapping = cmp.mapping.preset.insert({
|
||||
["<C-b>"] = cmp.mapping.scroll_docs(-4),
|
||||
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
||||
["<C-Space>"] = cmp.mapping.complete(),
|
||||
["<C-e>"] = cmp.mapping.abort(),
|
||||
["<CR>"] = cmp.mapping.confirm({ select = true }),
|
||||
|
||||
["<Tab>"] = cmp.mapping(function(fallback)
|
||||
if cmp.visible() then
|
||||
cmp.select_next_item()
|
||||
elseif luasnip.expand_or_jumpable() then
|
||||
luasnip.expand_or_jump()
|
||||
elseif has_words_before() then
|
||||
cmp.complete()
|
||||
else
|
||||
fallback()
|
||||
end
|
||||
end, { "i", "s" }),
|
||||
|
||||
["<S-Tab>"] = cmp.mapping(function(fallback)
|
||||
if cmp.visible() then
|
||||
cmp.select_prev_item()
|
||||
elseif luasnip.jumpable(-1) then
|
||||
luasnip.jump(-1)
|
||||
else
|
||||
fallback()
|
||||
end
|
||||
end, { "i", "s" }),
|
||||
}),
|
||||
sources = cmp.config.sources({
|
||||
{ name = "nvim_lsp" },
|
||||
{ name = "luasnip" },
|
||||
{ name = "vim-dadbod-completion" },
|
||||
{ name = "buffer" },
|
||||
}),
|
||||
formatting = {
|
||||
format = require("lspkind").cmp_format({
|
||||
mode = "symbol_text",
|
||||
maxwidth = 50,
|
||||
ellipsis_char = "...",
|
||||
}),
|
||||
},
|
||||
})
|
||||
|
||||
vim.api.nvim_create_autocmd("BufRead", {
|
||||
group = vim.api.nvim_create_augroup("CmpSourceCargo", { clear = true }),
|
||||
pattern = "Cargo.toml",
|
||||
callback = function()
|
||||
cmp.setup.buffer({ sources = { { name = "crates" } } })
|
||||
end,
|
||||
})
|
||||
|
||||
cmp.setup.cmdline({ "/", "?" }, {
|
||||
mapping = cmp.mapping.preset.cmdline(),
|
||||
sources = {
|
||||
{ name = "buffer" },
|
||||
},
|
||||
})
|
||||
|
||||
cmp.setup.cmdline(":", {
|
||||
mapping = cmp.mapping.preset.cmdline(),
|
||||
sources = cmp.config.sources({
|
||||
{ name = "path", option = { trailing_slash = true } },
|
||||
}, {
|
||||
{ name = "cmdline" },
|
||||
}),
|
||||
})
|
||||
|
||||
local capabilities = require("cmp_nvim_lsp").default_capabilities()
|
||||
|
||||
vim.api.nvim_create_autocmd("LspAttach", {
|
||||
group = vim.api.nvim_create_augroup("UserLspConfig", {}),
|
||||
callback = function(ev)
|
||||
local client = vim.lsp.get_client_by_id(ev.data.client_id)
|
||||
if navic_present and client.server_capabilities.documentSymbolProvider then
|
||||
navic.attach(client, ev.buf)
|
||||
end
|
||||
|
||||
local opts = { buffer = ev.buf }
|
||||
vim.keymap.set("n", "gD", vim.lsp.buf.declaration, opts)
|
||||
vim.keymap.set("n", "gd", vim.lsp.buf.definition, opts)
|
||||
vim.keymap.set("n", "K", vim.lsp.buf.hover, opts)
|
||||
vim.keymap.set("n", "gi", vim.lsp.buf.implementation, opts)
|
||||
vim.keymap.set("n", "<C-k>", vim.lsp.buf.signature_help, opts)
|
||||
vim.keymap.set("n", "<space>wa", vim.lsp.buf.add_workspace_folder, opts)
|
||||
vim.keymap.set("n", "<space>wr", vim.lsp.buf.remove_workspace_folder, opts)
|
||||
vim.keymap.set("n", "<space>wl", function()
|
||||
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
|
||||
end, opts)
|
||||
vim.keymap.set("n", "<space>D", vim.lsp.buf.type_definition, opts)
|
||||
vim.keymap.set("n", "<space>rn", vim.lsp.buf.rename, opts)
|
||||
vim.keymap.set({ "n", "v" }, "<space>ca", vim.lsp.buf.code_action, opts)
|
||||
vim.keymap.set("n", "gr", vim.lsp.buf.references, opts)
|
||||
vim.keymap.set("n", "<space>lr", "<cmd>LspRestart<CR>", opts)
|
||||
vim.keymap.set("n", "]d", vim.diagnostic.goto_next, opts)
|
||||
vim.keymap.set("n", "[d", vim.diagnostic.goto_prev, opts)
|
||||
vim.keymap.set("n", "<space>fm", function()
|
||||
vim.lsp.buf.format({ async = true })
|
||||
end, opts)
|
||||
end,
|
||||
})
|
||||
|
||||
-- register jq for jqls
|
||||
vim.cmd([[au BufRead,BufNewFile *.jq setfiletype jq]])
|
||||
|
||||
local common = { capabilities = capabilities }
|
||||
|
||||
require("isabel.lsp.ltex").setup(common)
|
||||
require("isabel.lsp.null-ls")
|
||||
require("isabel.lsp.nix").setup(common)
|
||||
require("isabel.lsp.validation").setup(common)
|
||||
require("isabel.lsp.webdev").setup(common)
|
||||
-- external dependencies
|
||||
pcall(require("py_lsp").setup, common)
|
||||
pcall(require("rust-tools").setup, {
|
||||
server = {
|
||||
settings = {
|
||||
["rust-analyzer"] = {
|
||||
cargo = {
|
||||
autoReload = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
tools = {
|
||||
executor = require("rust-tools.executors").toggleterm,
|
||||
},
|
||||
})
|
||||
|
||||
lspconfig.nil_ls.setup(vim.tbl_extend("keep", {
|
||||
settings = {
|
||||
["nil"] = {
|
||||
formatting = { command = { "alejandra" } },
|
||||
nix = { maxMemoryMB = nil },
|
||||
},
|
||||
},
|
||||
}, common))
|
||||
|
||||
local servers = {
|
||||
"astro",
|
||||
"bashls",
|
||||
"dockerls",
|
||||
"jqls",
|
||||
"lua_ls",
|
||||
"serve_d",
|
||||
"sourcekit",
|
||||
"taplo",
|
||||
"teal_ls",
|
||||
}
|
||||
|
||||
for _, server in ipairs(servers) do
|
||||
lspconfig[server].setup(common)
|
||||
end
|
25
plugins/config/lua/isabel/lsp/ltex.lua
Normal file
25
plugins/config/lua/isabel/lsp/ltex.lua
Normal file
|
@ -0,0 +1,25 @@
|
|||
local lsp_present, lspconfig = pcall(require, "lspconfig")
|
||||
|
||||
if not lsp_present then
|
||||
return
|
||||
end
|
||||
|
||||
local M = {}
|
||||
|
||||
M.setup = function(opts)
|
||||
lspconfig.ltex.setup({
|
||||
capabilities = opts.capabilities,
|
||||
on_attach = function()
|
||||
require("ltex_extra").setup({
|
||||
load_langs = { "en-US", "en-GB" },
|
||||
init_check = true,
|
||||
path = vim.fn.stdpath("data") .. "/dictionary",
|
||||
})
|
||||
end,
|
||||
settings = {
|
||||
ltex = {},
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
return M
|
24
plugins/config/lua/isabel/lsp/nix.lua
Normal file
24
plugins/config/lua/isabel/lsp/nix.lua
Normal file
|
@ -0,0 +1,24 @@
|
|||
local lsp_present, lspconfig = pcall(require, "lspconfig")
|
||||
|
||||
if not lsp_present then
|
||||
return
|
||||
end
|
||||
|
||||
local M = {}
|
||||
|
||||
M.setup = function(opts)
|
||||
lspconfig.nil_ls.setup({
|
||||
capabilities = opts.capabilities,
|
||||
cmd = nil,
|
||||
on_attach = default_on_attach,
|
||||
settings = {
|
||||
["nil"] = {
|
||||
formatting = {
|
||||
command = { "alejandra", "--quiet" },
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
return M
|
64
plugins/config/lua/isabel/lsp/null-ls.lua
Normal file
64
plugins/config/lua/isabel/lsp/null-ls.lua
Normal file
|
@ -0,0 +1,64 @@
|
|||
local null_present, null = pcall(require, "null-ls")
|
||||
|
||||
if not null_present then
|
||||
return
|
||||
end
|
||||
|
||||
local augroup = vim.api.nvim_create_augroup("LspFormatting", {})
|
||||
|
||||
null.setup({
|
||||
sources = {
|
||||
null.builtins.formatting.alejandra,
|
||||
null.builtins.diagnostics.statix,
|
||||
null.builtins.diagnostics.deadnix,
|
||||
null.builtins.formatting.black,
|
||||
null.builtins.formatting.dfmt,
|
||||
null.builtins.formatting.deno_fmt.with({
|
||||
filetypes = {
|
||||
"javascript",
|
||||
"javascriptreact",
|
||||
"typescript",
|
||||
"typescriptreact",
|
||||
},
|
||||
}),
|
||||
null.builtins.formatting.gofumpt,
|
||||
null.builtins.formatting.isort,
|
||||
null.builtins.formatting.prettier.with({
|
||||
filetypes = {
|
||||
"astro",
|
||||
},
|
||||
}),
|
||||
null.builtins.formatting.rustfmt,
|
||||
null.builtins.formatting.shfmt,
|
||||
null.builtins.formatting.stylua,
|
||||
null.builtins.formatting.swiftformat.with({
|
||||
command = "swift-format",
|
||||
}),
|
||||
null.builtins.formatting.taplo,
|
||||
null.builtins.diagnostics.alex,
|
||||
null.builtins.diagnostics.proselint,
|
||||
},
|
||||
on_attach = function(client, bufnr)
|
||||
if client.supports_method("textDocument/formatting") then
|
||||
vim.api.nvim_clear_autocmds({ group = augroup, buffer = bufnr })
|
||||
vim.api.nvim_create_autocmd("BufWritePre", {
|
||||
group = augroup,
|
||||
buffer = bufnr,
|
||||
callback = function()
|
||||
vim.lsp.buf.format({
|
||||
bufnr = bufnr,
|
||||
filter = function(c)
|
||||
return c.name == "null-ls"
|
||||
end,
|
||||
})
|
||||
end,
|
||||
})
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
||||
local toggle_formatters = function()
|
||||
null.toggle({ methods = null.methods.FORMATTING })
|
||||
end
|
||||
|
||||
vim.api.nvim_create_user_command("ToggleFormatters", toggle_formatters, {})
|
66
plugins/config/lua/isabel/lsp/validation.lua
Normal file
66
plugins/config/lua/isabel/lsp/validation.lua
Normal file
|
@ -0,0 +1,66 @@
|
|||
local lsp_present, lspconfig = pcall(require, "lspconfig")
|
||||
|
||||
if not lsp_present then
|
||||
return
|
||||
end
|
||||
|
||||
local M = {}
|
||||
|
||||
M.setup = function(opts)
|
||||
lspconfig.jsonls.setup(vim.tbl_extend("keep", {
|
||||
settings = {
|
||||
json = {
|
||||
schemas = require("schemastore").json.schemas(),
|
||||
validate = { enable = true },
|
||||
},
|
||||
},
|
||||
}, opts))
|
||||
lspconfig.yamlls.setup(vim.tbl_extend("keep", {
|
||||
settings = {
|
||||
yaml = {
|
||||
completion = true,
|
||||
validate = true,
|
||||
suggest = {
|
||||
parentSkeletonSelectedFirst = true,
|
||||
},
|
||||
schemas = {
|
||||
["https://json.schemastore.org/github-action"] = ".github/action.{yaml,yml}",
|
||||
["https://json.schemastore.org/github-workflow"] = ".github/workflows/*",
|
||||
["https://gitlab.com/gitlab-org/gitlab/-/raw/master/app/assets/javascripts/editor/schema/ci.json"] =
|
||||
"*lab-ci.{yaml,yml}",
|
||||
["https://json.schemastore.org/helmfile"] = "helmfile.{yaml,yml}",
|
||||
["https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json"] =
|
||||
"docker-compose.yml.{yml,yaml}",
|
||||
-- stylua: ignore
|
||||
kubernetes = {
|
||||
'*-deployment.yaml', '*-deployment.yml', '*-service.yaml', '*-service.yml',
|
||||
'clusterrole-contour.yaml',
|
||||
'clusterrole-contour.yml', 'clusterrole.yaml', 'clusterrole.yml', 'clusterrolebinding.yaml',
|
||||
'clusterrolebinding.yml', 'configmap.yaml', 'configmap.yml', 'cronjob.yaml', 'cronjob.yml',
|
||||
'daemonset.yaml',
|
||||
'daemonset.yml', 'deployment-*.yaml', 'deployment-*.yml', 'deployment.yaml', 'deployment.yml',
|
||||
'hpa.yaml',
|
||||
'hpa.yml', 'ingress.yaml', 'ingress.yml', 'job.yaml', 'job.yml', 'kubectl-edit-*.yaml',
|
||||
'namespace.yaml',
|
||||
'namespace.yml', 'pvc.yaml', 'pvc.yml', 'rbac.yaml', 'rbac.yml', 'replicaset.yaml',
|
||||
'replicaset.yml',
|
||||
'role.yaml', 'role.yml', 'rolebinding.yaml', 'rolebinding.yml', 'sa.yaml', 'sa.yml',
|
||||
'secret.yaml',
|
||||
'secret.yml', 'service-*.yaml', 'service-*.yml', 'service-account.yaml', 'service-account.yml',
|
||||
'service.yaml',
|
||||
'service.yml', 'serviceaccount.yaml', 'serviceaccount.yml', 'serviceaccounts.yaml',
|
||||
'serviceaccounts.yml',
|
||||
'statefulset.yaml', 'statefulset.yml'
|
||||
},
|
||||
},
|
||||
},
|
||||
redhat = {
|
||||
telemetry = {
|
||||
enabled = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
}, opts))
|
||||
end
|
||||
|
||||
return M
|
68
plugins/config/lua/isabel/lsp/webdev.lua
Normal file
68
plugins/config/lua/isabel/lsp/webdev.lua
Normal file
|
@ -0,0 +1,68 @@
|
|||
local lsp_present, lspconfig = pcall(require, "lspconfig")
|
||||
|
||||
if not lsp_present then
|
||||
return
|
||||
end
|
||||
|
||||
local M = {}
|
||||
|
||||
M.setup = function(opts)
|
||||
lspconfig.astro.setup(opts)
|
||||
lspconfig.cssls.setup(opts)
|
||||
lspconfig.emmet_ls.setup(opts)
|
||||
lspconfig.graphql.setup(vim.tbl_extend("keep", {
|
||||
filetypes = {
|
||||
"graphql",
|
||||
"typescriptreact",
|
||||
"javascriptreact",
|
||||
"typescript",
|
||||
},
|
||||
}, opts))
|
||||
lspconfig.html.setup(opts)
|
||||
lspconfig.intelephense.setup(opts)
|
||||
lspconfig.tailwindcss.setup(vim.tbl_extend("keep", {
|
||||
filetypes = {
|
||||
"astro",
|
||||
"javascriptreact",
|
||||
"typescriptreact",
|
||||
"html",
|
||||
"css",
|
||||
},
|
||||
}, opts))
|
||||
|
||||
-- attach tsserver only when there's a 'package.json' file in the CWD
|
||||
require("typescript-tools").setup({
|
||||
single_file_support = false,
|
||||
root_dir = function(fname)
|
||||
local root_dir = lspconfig.util.root_pattern("tsconfig.json")(fname)
|
||||
|
||||
-- this is needed to make sure we don't pick up root_dir inside node_modules
|
||||
local node_modules_index = root_dir and root_dir:find("node_modules", 1, true)
|
||||
if node_modules_index and node_modules_index > 0 then
|
||||
---@diagnostic disable-next-line: need-check-nil
|
||||
root_dir = root_dir:sub(1, node_modules_index - 2)
|
||||
end
|
||||
|
||||
return root_dir
|
||||
end,
|
||||
settings = {
|
||||
expose_as_code_action = {
|
||||
"add_missing_imports",
|
||||
"fix_all",
|
||||
"remove_unused",
|
||||
},
|
||||
-- Nix silliness
|
||||
-- stylua: ignore
|
||||
tsserver_path = vim.fn.resolve(vim.fn.exepath("tsserver") ..
|
||||
"/../../lib/node_modules/typescript/bin/tsserver"),
|
||||
},
|
||||
})
|
||||
|
||||
-- attach deno only when there's a 'deps.ts' file in the CWD
|
||||
lspconfig.denols.setup(vim.tbl_extend("keep", {
|
||||
root_dir = lspconfig.util.root_pattern("deno.json", "deno.jsonc"),
|
||||
single_file_support = false,
|
||||
}, opts))
|
||||
end
|
||||
|
||||
return M
|
67
plugins/config/plugin/autocmds.lua
Normal file
67
plugins/config/plugin/autocmds.lua
Normal file
|
@ -0,0 +1,67 @@
|
|||
vim.api.nvim_create_autocmd("VimResized", {
|
||||
pattern = "*",
|
||||
command = "wincmd =",
|
||||
desc = "Automatically resize windows when the host window size changes.",
|
||||
})
|
||||
|
||||
vim.api.nvim_create_autocmd("TextYankPost", {
|
||||
pattern = "*",
|
||||
callback = function()
|
||||
vim.highlight.on_yank({ higroup = "IncSearch", timeout = 200 })
|
||||
end,
|
||||
desc = "Highlight yanked text",
|
||||
})
|
||||
|
||||
vim.api.nvim_create_autocmd({ "RecordingEnter", "RecordingLeave" }, {
|
||||
callback = function(data)
|
||||
local msg = data.event == "RecordingEnter" and "Recording macro..." or "Macro recorded"
|
||||
vim.notify(msg, vim.log.levels.INFO, { title = "Macro" })
|
||||
end,
|
||||
desc = "Notify when recording macro",
|
||||
})
|
||||
|
||||
local numbertoggle = vim.api.nvim_create_augroup("numbertoggle", {})
|
||||
local ignore_ft = {
|
||||
"",
|
||||
"alpha",
|
||||
"fugitive",
|
||||
"help",
|
||||
"lazy",
|
||||
"NvimTree",
|
||||
"Lazygit",
|
||||
"TelescopePrompt",
|
||||
"toggleterm",
|
||||
"Trouble",
|
||||
}
|
||||
---@param callback fun(): nil
|
||||
local ft_guard = function(callback)
|
||||
if not vim.tbl_contains(ignore_ft, vim.bo.filetype) then
|
||||
callback()
|
||||
end
|
||||
end
|
||||
|
||||
vim.api.nvim_create_autocmd({ "InsertEnter", "BufLeave", "WinLeave", "FocusLost" }, {
|
||||
callback = function()
|
||||
ft_guard(function()
|
||||
vim.opt_local.rnu = false
|
||||
end)
|
||||
end,
|
||||
group = numbertoggle,
|
||||
})
|
||||
vim.api.nvim_create_autocmd({ "InsertLeave", "BufEnter", "WinEnter", "FocusGained" }, {
|
||||
callback = function()
|
||||
ft_guard(function()
|
||||
vim.opt_local.rnu = true
|
||||
end)
|
||||
end,
|
||||
group = numbertoggle,
|
||||
})
|
||||
vim.api.nvim_create_autocmd({ "CmdlineEnter", "CmdlineLeave" }, {
|
||||
callback = function(data)
|
||||
ft_guard(function()
|
||||
vim.opt.rnu = data.event == "CmdlineLeave"
|
||||
vim.cmd("redraw")
|
||||
end)
|
||||
end,
|
||||
group = numbertoggle,
|
||||
})
|
27
plugins/config/plugin/keybinds.lua
Normal file
27
plugins/config/plugin/keybinds.lua
Normal file
|
@ -0,0 +1,27 @@
|
|||
local map = function(mode, shortcut, command, opt)
|
||||
opt = opt or { noremap = true, silent = true }
|
||||
vim.keymap.set(mode, shortcut, command, opt)
|
||||
end
|
||||
|
||||
-- easier split navigation
|
||||
map("n", "<C-J>", "<C-W>j")
|
||||
map("n", "<C-K>", "<C-W>k")
|
||||
map("n", "<C-L>", "<C-W>l")
|
||||
map("n", "<C-H>", "<C-W>h")
|
||||
map("n", "<C-W>\\", ":vsplit<CR>")
|
||||
map("n", "<C-W>-", ":split<CR>")
|
||||
map("n", "<C-W>x", ":q<CR>")
|
||||
-- merge conflicts
|
||||
map("n", "gd", ":diffget")
|
||||
map("n", "gdh", ":diffget //2<CR>")
|
||||
map("n", "gdl", ":diffget //3<CR>")
|
||||
-- escape :terminal easier
|
||||
map("t", "<Esc>", "<C-\\><C-n>")
|
||||
-- keep cursor in the middle when scrolling and searching
|
||||
map("n", "<C-d>", "<C-d>zz")
|
||||
map("n", "<C-u>", "<C-u>zz")
|
||||
map("n", "n", "nzzzv")
|
||||
map("n", "N", "Nzzzv")
|
||||
|
||||
-- NvimTree
|
||||
map("n", "<C-N>", ":NvimTreeToggle<CR>")
|
28
plugins/config/plugin/neovide.lua
Normal file
28
plugins/config/plugin/neovide.lua
Normal file
|
@ -0,0 +1,28 @@
|
|||
if not vim.g.neovide then
|
||||
return
|
||||
end
|
||||
|
||||
vim.opt.guifont = "RobotoMono Nerd Font,Symbols Nerd Font:h14:#e-subpixelantialias"
|
||||
vim.g.neovide_cursor_vfx_mode = "ripple"
|
||||
vim.g.neovide_hide_mouse_when_typing = true
|
||||
vim.g.neovide_input_macos_alt_is_meta = true
|
||||
vim.g.neovide_refresh_rate = 60
|
||||
vim.g.neovide_refresh_rate_idle = 5
|
||||
vim.g.neovide_scroll_animation_length = 0.3
|
||||
vim.keymap.set("n", "<M-CR>", ":let g:neovide_fullscreen = !g:neovide_fullscreen<CR>", {
|
||||
noremap = true,
|
||||
silent = true,
|
||||
})
|
||||
|
||||
vim.g.neovide_scale_factor = 1.0
|
||||
|
||||
local change_scale_factor = function(delta)
|
||||
vim.g.neovide_scale_factor = vim.g.neovide_scale_factor * delta
|
||||
end
|
||||
|
||||
vim.keymap.set("n", "<M-=>", function()
|
||||
change_scale_factor(1.25)
|
||||
end)
|
||||
vim.keymap.set("n", "<M-->", function()
|
||||
change_scale_factor(1 / 1.25)
|
||||
end)
|
98
plugins/config/plugin/options.lua
Normal file
98
plugins/config/plugin/options.lua
Normal file
|
@ -0,0 +1,98 @@
|
|||
vim.g.mapleader = " "
|
||||
|
||||
-- netrw is handled by nvim-tree
|
||||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
|
||||
-- true colors
|
||||
vim.o.termguicolors = true
|
||||
vim.o.cmdheight = 0
|
||||
-- line numbers
|
||||
vim.o.mouse = "a"
|
||||
vim.o.number = true
|
||||
vim.o.relativenumber = true
|
||||
-- scroll offsets
|
||||
vim.o.scrolloff = 5
|
||||
vim.o.sidescrolloff = 15
|
||||
-- always show status
|
||||
vim.o.laststatus = 3
|
||||
-- hide tab line
|
||||
vim.o.showtabline = 0
|
||||
vim.g.termguicolors = false
|
||||
-- completion height
|
||||
vim.o.pumheight = 15
|
||||
-- split directions
|
||||
vim.o.splitbelow = true
|
||||
vim.o.splitright = true
|
||||
vim.o.wrap = false
|
||||
vim.o.ignorecase = true
|
||||
vim.o.smartcase = true
|
||||
-- redefine word boundaries - '_' is a word separator, this helps with snake_case
|
||||
vim.opt.iskeyword:remove("_")
|
||||
-- indentations settings
|
||||
vim.o.shiftwidth = 2
|
||||
vim.o.tabstop = 2
|
||||
vim.o.softtabstop = 0
|
||||
vim.o.expandtab = true
|
||||
-- always show 1 column of sign column (gitsigns, etc.)
|
||||
vim.o.signcolumn = "yes:1"
|
||||
-- hide search notices, intro
|
||||
vim.opt.shortmess:append("sI")
|
||||
|
||||
-- stylua: ignore
|
||||
local borderchars = {
|
||||
single = {
|
||||
style = "single",
|
||||
vert = "│",
|
||||
vertleft = "┤",
|
||||
vertright = "├",
|
||||
horiz = "─",
|
||||
horizup = "┴",
|
||||
horizdown = "┬",
|
||||
verthoriz = "┼",
|
||||
topleft = "┌",
|
||||
topright = "┐",
|
||||
botleft = "└",
|
||||
botright = "┘"
|
||||
},
|
||||
double = {
|
||||
style = "double",
|
||||
vert = "║",
|
||||
vertleft = "╣",
|
||||
vertright = "╠",
|
||||
horiz = "═",
|
||||
horizup = "╩",
|
||||
horizdown = "╦",
|
||||
verthoriz = "╬",
|
||||
topleft = "╔",
|
||||
topright = "╗",
|
||||
botleft = "╚",
|
||||
botright = "╝"
|
||||
},
|
||||
rounded = {
|
||||
style = "rounded",
|
||||
vert = "│",
|
||||
vertleft = "┤",
|
||||
vertright = "├",
|
||||
horiz = "─",
|
||||
horizup = "┴",
|
||||
horizdown = "┬",
|
||||
verthoriz = "┼",
|
||||
topleft = "╭",
|
||||
topright = "╮",
|
||||
botleft = "╰",
|
||||
botright = "╯"
|
||||
},
|
||||
}
|
||||
|
||||
-- my custom borderchars
|
||||
vim.g.bc = borderchars.rounded
|
||||
vim.opt.fillchars:append({
|
||||
horiz = vim.g.bc.horiz,
|
||||
horizup = vim.g.bc.horizup,
|
||||
horizdown = vim.g.bc.horizdown,
|
||||
vert = vim.g.bc.vert,
|
||||
vertright = vim.g.bc.vertright,
|
||||
vertleft = vim.g.bc.vertleft,
|
||||
verthoriz = vim.g.bc.verthoriz,
|
||||
})
|
369
plugins/default.nix
Normal file
369
plugins/default.nix
Normal file
|
@ -0,0 +1,369 @@
|
|||
{pkgs}: let
|
||||
srcs = builtins.mapAttrs (name: pkg: pkg.src) (pkgs.callPackage ../_sources/generated.nix {});
|
||||
in rec {
|
||||
config = {
|
||||
src = ./config;
|
||||
lazy = false;
|
||||
priority = 1000;
|
||||
};
|
||||
|
||||
# what was that button again
|
||||
which-key = {
|
||||
src = srcs.which-key;
|
||||
config = ./which-key.lua;
|
||||
};
|
||||
|
||||
# tree view
|
||||
nvim-tree = {
|
||||
src = srcs.nvim-tree-lua;
|
||||
config = {
|
||||
sync_root_with_cwd = true;
|
||||
diagnostics.enable = true;
|
||||
renderer.indent_markers.enable = true;
|
||||
modified.enable = true;
|
||||
renderer.icons.web_devicons.folder.enable = true;
|
||||
};
|
||||
dependencies = {inherit plenary nvim-web-devicons;};
|
||||
};
|
||||
|
||||
# terminal within nvim
|
||||
toggleterm = {
|
||||
src = srcs.toggleterm;
|
||||
config = {
|
||||
open_mapping = "<C-t>";
|
||||
shade_terminals = false;
|
||||
};
|
||||
};
|
||||
|
||||
# markdown stuff
|
||||
obsidian-nvim = {
|
||||
src = srcs.obsidian-nvim;
|
||||
config = ./obsidian-nvim.lua;
|
||||
dependencies = {inherit plenary;};
|
||||
};
|
||||
|
||||
markdown-preview = {
|
||||
package = pkgs.callPackage ../pkgs/markdown-preview {};
|
||||
};
|
||||
|
||||
vim-table-mode = {
|
||||
src = srcs.vim-table-mode;
|
||||
config = ./vim-table-mode.lua;
|
||||
};
|
||||
|
||||
# rice
|
||||
alpha = {
|
||||
src = srcs.alpha-nvim;
|
||||
config = ./alpha.lua;
|
||||
dependencies = {
|
||||
neovim-session-manager = {
|
||||
src = srcs.neovim-session-manager;
|
||||
dependencies = {inherit plenary;};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
lualine = {
|
||||
src = srcs.lualine;
|
||||
config = ./lualine.lua;
|
||||
dependencies = {
|
||||
navic = {
|
||||
src = srcs.nvim-navic;
|
||||
|
||||
config = {
|
||||
highlight = true;
|
||||
separator = " ";
|
||||
icons = {
|
||||
File = " ";
|
||||
Module = " ";
|
||||
Namespace = " ";
|
||||
Package = " ";
|
||||
Class = " ";
|
||||
Method = " ";
|
||||
Property = " ";
|
||||
Field = " ";
|
||||
Constructor = " ";
|
||||
Enum = " ";
|
||||
Interface = " ";
|
||||
Function = " ";
|
||||
Variable = " ";
|
||||
Constant = " ";
|
||||
String = " ";
|
||||
Number = " ";
|
||||
Boolean = " ";
|
||||
Array = " ";
|
||||
Object = " ";
|
||||
Key = " ";
|
||||
Null = " ";
|
||||
EnumMember = " ";
|
||||
Struct = " ";
|
||||
Event = " ";
|
||||
Operator = " ";
|
||||
TypeParameter = " ";
|
||||
};
|
||||
};
|
||||
|
||||
dependencies = {inherit nvim-web-devicons;};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
catppuccin = {
|
||||
src = srcs.catppuccin;
|
||||
config = ./catppuccin.lua;
|
||||
priority = 1000;
|
||||
};
|
||||
|
||||
fidget = {
|
||||
src = srcs.fidget;
|
||||
|
||||
config = {
|
||||
text = {
|
||||
spinner = "dots";
|
||||
done = "";
|
||||
commenced = "init";
|
||||
completed = "done";
|
||||
};
|
||||
window.blend = 0;
|
||||
sources = {
|
||||
"copilot".ignore = true;
|
||||
"null-ls".ignore = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# tabs
|
||||
bufferline = {
|
||||
src = srcs.bufferline;
|
||||
config = ./bufferline.lua;
|
||||
dependencies = {inherit catppuccin;};
|
||||
};
|
||||
|
||||
# nicer notfications
|
||||
notify = {
|
||||
src = srcs.nvim-notify;
|
||||
config = ./notify.lua;
|
||||
lazy = false;
|
||||
};
|
||||
|
||||
nvim-colorizer = {
|
||||
src = srcs.nvim-colorizer-lua;
|
||||
config = {
|
||||
user_default_options = {
|
||||
RGB = true;
|
||||
RRGGBB = true;
|
||||
names = false;
|
||||
RRGGBBAA = true;
|
||||
AARRGGBB = false;
|
||||
rgb_fn = false;
|
||||
hsl_fn = false;
|
||||
css = false;
|
||||
css_fn = false;
|
||||
mode = "background";
|
||||
tailwind = "both";
|
||||
sass = {enable = true;};
|
||||
virtualtext = " ";
|
||||
};
|
||||
buftypes = [
|
||||
"*"
|
||||
"!dashboard"
|
||||
"!lazy"
|
||||
"!popup"
|
||||
"!prompt"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
color-picker = {
|
||||
src = srcs.color-picker;
|
||||
config = true;
|
||||
};
|
||||
|
||||
# comments
|
||||
comment = {
|
||||
src = srcs.comment;
|
||||
config = true;
|
||||
};
|
||||
|
||||
todo-comments = {
|
||||
src = srcs.todo-comments;
|
||||
config = true;
|
||||
};
|
||||
|
||||
# formating
|
||||
indent-blankline = {
|
||||
src = srcs.indent-blankline;
|
||||
config = ./indent-blankline.lua;
|
||||
};
|
||||
|
||||
# quicker movement
|
||||
nvim-surround = {
|
||||
src = srcs.nvim-surround;
|
||||
config = true;
|
||||
};
|
||||
|
||||
spectre = {
|
||||
src = srcs.nvim-spectre;
|
||||
config.replace_engine.sed.cmd = "sed";
|
||||
dependencies = {inherit plenary;};
|
||||
};
|
||||
|
||||
telescope = {
|
||||
src = srcs.telescope;
|
||||
config = ./telescope.lua;
|
||||
dependencies = {
|
||||
inherit plenary nvim-web-devicons;
|
||||
telescope-asynctasks.src = srcs.telescope-asynctasks;
|
||||
telescope-file-browser.src = srcs.telescope-file-browser;
|
||||
telescope-fzf-native.package = pkgs.callPackage ../pkgs/telescope-fzf-native {};
|
||||
telescope-project.src = srcs.telescope-project;
|
||||
telescope-ui-select.src = srcs.telescope-ui-select;
|
||||
};
|
||||
};
|
||||
|
||||
# copilot
|
||||
copilot-cmp.src = srcs.copilot-cmp;
|
||||
|
||||
copilot-lua = {
|
||||
src = srcs.copilot-lua;
|
||||
config = {
|
||||
panel.enabled = false;
|
||||
suggestion = {
|
||||
enabled = false;
|
||||
auto_trigger = true;
|
||||
debounce = 75;
|
||||
keymap.accept = "<C-J>";
|
||||
};
|
||||
filetypes = {
|
||||
"." = false;
|
||||
cvs = false;
|
||||
gitcommit = false;
|
||||
gitrebase = false;
|
||||
help = false;
|
||||
hgcommit = false;
|
||||
markdown = false;
|
||||
svn = false;
|
||||
yaml = true;
|
||||
};
|
||||
copilot_node_command = "node";
|
||||
server_opts_overrides = {};
|
||||
};
|
||||
};
|
||||
|
||||
# git stuff
|
||||
diffview.src = srcs.diffview;
|
||||
|
||||
gitsigns = {
|
||||
src = srcs.gitsigns;
|
||||
config = ./gitsigns.lua;
|
||||
dependencies = {inherit which-key;};
|
||||
};
|
||||
|
||||
lazygit = {
|
||||
src = srcs.lazygit;
|
||||
dependencies = {inherit plenary;};
|
||||
};
|
||||
|
||||
# lsp
|
||||
nvim-treesitter = {
|
||||
package = pkgs.callPackage ../pkgs/nvim-treesitter {};
|
||||
config = ./tree-sitter.lua;
|
||||
|
||||
dependencies = {
|
||||
nvim-treesitter-playground.src = srcs.playground;
|
||||
nvim-treesitter-textobjects.src = srcs.nvim-treesitter-textobjects;
|
||||
nvim-ts-autotag.src = srcs.nvim-ts-autotag;
|
||||
rainbow-delimiters.src = srcs.rainbow-delimiters;
|
||||
|
||||
nvim-treesitter-context = {
|
||||
src = srcs.nvim-treesitter-context;
|
||||
config = {
|
||||
enable = false;
|
||||
mode = "topline";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
nvim-lspconfig = {
|
||||
src = srcs.nvim-lspconfig;
|
||||
config = ./lsp.lua;
|
||||
|
||||
dependencies = rec {
|
||||
cmp.src = srcs.nvim-cmp;
|
||||
cmp-buffer.src = srcs.cmp-buffer;
|
||||
cmp-cmdline.src = srcs.cmp-cmdline;
|
||||
cmp-nvim-lsp.src = srcs.cmp-nvim-lsp;
|
||||
cmp-path.src = srcs.cmp-path;
|
||||
cmp_luasnip.src = srcs.cmp_luasnip;
|
||||
cmp-git.src = srcs.cmp-git;
|
||||
lspkind.src = srcs.lspkind;
|
||||
null-ls.src = srcs.null-ls;
|
||||
lsp-status.src = srcs.lsp-status;
|
||||
ltex-extra.src = srcs.ltex-extra;
|
||||
schemastore.src = srcs.schemastore;
|
||||
py_lsp.src = srcs.py_lsp;
|
||||
rust-tools.src = srcs.rust-tools;
|
||||
typescript-tools.src = srcs.typescript-tools;
|
||||
neorepl.src = srcs.neorepl;
|
||||
neoconf.src = srcs.neoconf;
|
||||
|
||||
luasnip = {
|
||||
src = srcs.luasnip;
|
||||
dependencies = {
|
||||
friendly-snippets.src = srcs.friendly-snippets;
|
||||
my-snippets.src = pkgs.callPackage ../pkgs/snippets {};
|
||||
};
|
||||
};
|
||||
|
||||
trouble = {
|
||||
src = srcs.trouble;
|
||||
config.padding = false;
|
||||
};
|
||||
|
||||
neodev = {
|
||||
src = srcs.neodev;
|
||||
config = true;
|
||||
};
|
||||
|
||||
nvim-autopairs = {
|
||||
src = srcs.nvim-autopairs;
|
||||
config = ./autopairs.lua;
|
||||
dependencies = {inherit cmp;};
|
||||
};
|
||||
|
||||
crates = {
|
||||
src = srcs.crates;
|
||||
config = true;
|
||||
};
|
||||
|
||||
nvim-dap = {
|
||||
src = srcs.nvim-dap;
|
||||
dependencies = {
|
||||
nvim-dap-ui.src = srcs.nvim-dap-ui;
|
||||
nvim-dap-virtual-text.src = srcs.nvim-dap-virtual-text;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# misc
|
||||
wakatime.src = pkgs.vimPlugins.vim-wakatime; # track my time coding
|
||||
dressing.src = srcs.dressing;
|
||||
|
||||
glance = {
|
||||
src = srcs.glance;
|
||||
config = true;
|
||||
};
|
||||
|
||||
# deps
|
||||
plenary.src = srcs.plenary;
|
||||
asyncrun-vim.src = srcs.asyncrun-vim;
|
||||
asynctasks-vim.src = srcs.asynctasks-vim;
|
||||
|
||||
nvim-web-devicons = {
|
||||
src = srcs.nvim-web-devicons;
|
||||
config = ./nvim-web-devicons.lua;
|
||||
dependencies = {inherit catppuccin;};
|
||||
};
|
||||
}
|
88
plugins/gitsigns.lua
Normal file
88
plugins/gitsigns.lua
Normal file
|
@ -0,0 +1,88 @@
|
|||
return function()
|
||||
local present, wk = pcall(require, "which-key")
|
||||
|
||||
if not present then
|
||||
vim.notify("which-key not found", vim.log.levels.ERROR)
|
||||
return
|
||||
end
|
||||
|
||||
local gs = require("gitsigns")
|
||||
|
||||
gs.setup({
|
||||
on_attach = function(_)
|
||||
-- Gitsigns
|
||||
wk.register({
|
||||
["<leader>h"] = {
|
||||
name = "+Gitsigns",
|
||||
s = { "<cmd>Gitsigns stage_hunk<CR>", "Stage Hunk" },
|
||||
r = { "<cmd>Gitsigns reset_hunk<CR>", "Reset Hunk" },
|
||||
},
|
||||
}, { mode = { "n", "v" } })
|
||||
|
||||
wk.register({
|
||||
["<leader>h"] = {
|
||||
name = "+Gitsigns",
|
||||
s = { gs.stage_buffer, "Stage Buffer" },
|
||||
u = { gs.undo_stage_hunk, "Undo Stage Hunk" },
|
||||
R = { gs.reset_buffer, "Reset Buffer" },
|
||||
p = { gs.preview_hunk, "Preview Hunk" },
|
||||
b = {
|
||||
function()
|
||||
gs.blame_line({ full = true })
|
||||
end,
|
||||
"Blame line",
|
||||
},
|
||||
d = { gs.diffthis, "Diff current buffer" },
|
||||
D = {
|
||||
function()
|
||||
gs.diffthis("~")
|
||||
end,
|
||||
"Diff against last commit",
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
wk.register({
|
||||
["<leader>t"] = {
|
||||
name = "+Toggle settings",
|
||||
b = { gs.toggle_current_line_blame, "Toggle blame lines" },
|
||||
d = { gs.toggle_deleted, "Toggle deleted lines" },
|
||||
},
|
||||
})
|
||||
|
||||
wk.register({
|
||||
["[c"] = {
|
||||
function()
|
||||
if vim.wo.diff then
|
||||
return "[c"
|
||||
end
|
||||
vim.schedule(function()
|
||||
gs.prev_hunk()
|
||||
end)
|
||||
return "<Ignore>"
|
||||
end,
|
||||
"Go to previous hunk",
|
||||
},
|
||||
["]c"] = {
|
||||
function()
|
||||
if vim.wo.diff then
|
||||
return "]c"
|
||||
end
|
||||
vim.schedule(function()
|
||||
gs.next_hunk()
|
||||
end)
|
||||
return "<Ignore>"
|
||||
end,
|
||||
"Go to next hunk",
|
||||
},
|
||||
}, { expr = true })
|
||||
|
||||
-- Text object
|
||||
wk.register({
|
||||
["ih"] = { ":<C-U>Gitsigns select_hunk<CR>", "Select inside Hunk" },
|
||||
}, { mode = { "o", "x" } })
|
||||
end,
|
||||
current_line_blame = true,
|
||||
current_line_blame_formatter = "<author>, <author_time:%R> - <summary> | <abbrev_sha>",
|
||||
})
|
||||
end
|
16
plugins/indent-blankline.lua
Normal file
16
plugins/indent-blankline.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
return function()
|
||||
require("ibl").setup({
|
||||
exclude = {
|
||||
filetypes = {
|
||||
"alpha",
|
||||
"fugitive",
|
||||
"help",
|
||||
"lazy",
|
||||
"LazyGit",
|
||||
"NvimTree",
|
||||
"TelescopePrompt",
|
||||
"Trouble",
|
||||
},
|
||||
},
|
||||
})
|
||||
end
|
3
plugins/lsp.lua
Normal file
3
plugins/lsp.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
return function()
|
||||
require("isabel.lsp")
|
||||
end
|
45
plugins/lualine.lua
Normal file
45
plugins/lualine.lua
Normal file
|
@ -0,0 +1,45 @@
|
|||
return function()
|
||||
require("lualine").setup({
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = "catppuccin",
|
||||
component_separators = { left = "", right = "" },
|
||||
section_separators = { left = "", right = "" },
|
||||
always_divide_middle = true,
|
||||
globalstatus = true,
|
||||
refresh = {
|
||||
statusline = 1000,
|
||||
tabline = 1000,
|
||||
winbar = 1000,
|
||||
},
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { "mode" },
|
||||
lualine_b = { "branch", "diff", "diagnostics" },
|
||||
lualine_c = { "searchcount" },
|
||||
lualine_x = { "filetype" },
|
||||
lualine_y = { "progress" },
|
||||
lualine_z = { "location" },
|
||||
},
|
||||
tabline = {},
|
||||
winbar = {
|
||||
lualine_c = { "navic" },
|
||||
lualine_x = {
|
||||
{
|
||||
function()
|
||||
return " "
|
||||
end,
|
||||
cond = function()
|
||||
local present, navic = pcall(require, "nvim-navic")
|
||||
if not present then
|
||||
return false
|
||||
end
|
||||
return navic.is_available()
|
||||
end,
|
||||
},
|
||||
},
|
||||
},
|
||||
inactive_winbar = {},
|
||||
extensions = {},
|
||||
})
|
||||
end
|
10
plugins/notify.lua
Normal file
10
plugins/notify.lua
Normal file
|
@ -0,0 +1,10 @@
|
|||
return function()
|
||||
local notify = require("notify")
|
||||
notify.setup({
|
||||
background_colour = "#1e1e2e",
|
||||
timeout = 1000,
|
||||
render = "compact",
|
||||
stages = "fade",
|
||||
})
|
||||
vim.notify = notify
|
||||
end
|
29
plugins/nvim-web-devicons.lua
Normal file
29
plugins/nvim-web-devicons.lua
Normal file
|
@ -0,0 +1,29 @@
|
|||
return function()
|
||||
local C = require("catppuccin.palettes").get_palette()
|
||||
|
||||
local devicons = require("nvim-web-devicons")
|
||||
devicons.setup({
|
||||
override_by_filename = {
|
||||
[".ecrc"] = {
|
||||
icon = "",
|
||||
name = "EditorConfigChecker",
|
||||
color = C.green,
|
||||
},
|
||||
[".envrc"] = {
|
||||
icon = "",
|
||||
name = "envrc",
|
||||
color = C.yellow,
|
||||
},
|
||||
[".editorconfig"] = {
|
||||
icon = "",
|
||||
name = "EditorConfig",
|
||||
color = C.green,
|
||||
},
|
||||
[".luacheckrc"] = {
|
||||
icon = "",
|
||||
name = "LuacheckRC",
|
||||
color = C.blue,
|
||||
},
|
||||
},
|
||||
})
|
||||
end
|
13
plugins/obsidian-nvim.lua
Normal file
13
plugins/obsidian-nvim.lua
Normal file
|
@ -0,0 +1,13 @@
|
|||
return function()
|
||||
require("obsidian").setup({
|
||||
workspaces = {
|
||||
{
|
||||
name = "default",
|
||||
path = "~/documents/obsidian",
|
||||
},
|
||||
},
|
||||
completion = {
|
||||
nvim_cmp = true,
|
||||
},
|
||||
})
|
||||
end
|
80
plugins/telescope.lua
Normal file
80
plugins/telescope.lua
Normal file
|
@ -0,0 +1,80 @@
|
|||
return function()
|
||||
local bc = vim.g.bc
|
||||
|
||||
local no_preview = function(opts)
|
||||
local defaults = require("telescope.themes").get_dropdown({
|
||||
-- stylua: ignore
|
||||
borderchars = {
|
||||
{ bc.horiz, bc.vert, bc.horiz, bc.vert, bc.topleft, bc.topright, bc.botright, bc.botleft },
|
||||
prompt = { bc.horiz, bc.vert, " ", bc.vert, bc.topleft, bc.topright, bc.vert, bc.vert },
|
||||
results = { bc.horiz, bc.vert, bc.horiz, bc.vert, bc.vertright, bc.vertleft, bc.botright, bc.botleft },
|
||||
preview = { bc.horiz, bc.vert, bc.horiz, bc.vert, bc.topleft, bc.topright, bc.botright, bc.botleft },
|
||||
},
|
||||
width = 0.8,
|
||||
previewer = false,
|
||||
prompt_title = false,
|
||||
results_title = false,
|
||||
})
|
||||
return vim.tbl_deep_extend("keep", opts or {}, defaults)
|
||||
end
|
||||
|
||||
local telescope = require("telescope")
|
||||
|
||||
telescope.load_extension("asynctasks")
|
||||
telescope.load_extension("file_browser")
|
||||
telescope.load_extension("fzf")
|
||||
telescope.load_extension("notify")
|
||||
telescope.load_extension("project")
|
||||
telescope.load_extension("ui-select")
|
||||
|
||||
telescope.setup({
|
||||
defaults = {
|
||||
prompt_prefix = " ",
|
||||
selection_caret = " ",
|
||||
multi_icon = "│",
|
||||
-- stylua: ignore
|
||||
borderchars = { bc.horiz, bc.vert, bc.horiz, bc.vert, bc.topleft, bc.topright, bc.botright, bc.botleft },
|
||||
},
|
||||
pickers = {
|
||||
find_files = no_preview(),
|
||||
live_grep = no_preview({
|
||||
previewer = true,
|
||||
}),
|
||||
load_session = no_preview(),
|
||||
},
|
||||
extensions = {
|
||||
file_browser = {
|
||||
grouped = true,
|
||||
sorting_strategy = "ascending",
|
||||
},
|
||||
fzf = {
|
||||
fuzzy = true,
|
||||
override_generic_sorter = true,
|
||||
override_file_sorter = true,
|
||||
case_mode = "smart_case",
|
||||
},
|
||||
["ui-select"] = no_preview(),
|
||||
},
|
||||
})
|
||||
|
||||
local wk_present, wk = pcall(require, "which-key")
|
||||
if not wk_present then
|
||||
return
|
||||
end
|
||||
wk.register({
|
||||
["<leader><leader>"] = {
|
||||
"<cmd>Telescope file_browser grouped=true<cr>",
|
||||
"File browser",
|
||||
},
|
||||
["<leader>f"] = {
|
||||
name = "+Telescope",
|
||||
d = { "<cmd>Telescope find_files<cr>", "Find file" },
|
||||
g = { "<cmd>Telescope live_grep<cr>", "Live grep" },
|
||||
h = { "<cmd>Telescope help_tags<cr>", "Help tags" },
|
||||
n = { "<cmd>Telescope notify<cr>", "Show notifications" },
|
||||
p = { "<cmd>Telescope project<cr>", "Project" },
|
||||
r = { "<cmd>Telescope asynctasks all<cr>", "Run asynctasks" },
|
||||
s = { "<cmd>SessionManager load_session<cr>", "Show sessions" },
|
||||
},
|
||||
})
|
||||
end
|
14
plugins/tree-sitter.lua
Normal file
14
plugins/tree-sitter.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
return function()
|
||||
require("nvim-treesitter.configs").setup({
|
||||
auto_install = false,
|
||||
highlight = { enable = true },
|
||||
rainbow = {
|
||||
enable = true,
|
||||
extended_mode = true,
|
||||
max_file_lines = 8192,
|
||||
},
|
||||
})
|
||||
vim.o.foldmethod = "expr"
|
||||
vim.o.foldexpr = "nvim_treesitter#foldexpr()"
|
||||
vim.o.foldenable = false
|
||||
end
|
3
plugins/vim-table-mode.lua
Normal file
3
plugins/vim-table-mode.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
return function()
|
||||
vim.cmd([[autocmd FileType markdown let g:table_mode_corner='|']])
|
||||
end
|
34
plugins/which-key.lua
Normal file
34
plugins/which-key.lua
Normal file
|
@ -0,0 +1,34 @@
|
|||
return function()
|
||||
local wk = require("which-key")
|
||||
wk.setup({
|
||||
key_labels = {
|
||||
["<space>"] = " ",
|
||||
["<leader>"] = " ",
|
||||
["<bs>"] = " ",
|
||||
["<cr>"] = " ",
|
||||
["<esc>"] = " ",
|
||||
["<tab>"] = " ",
|
||||
},
|
||||
window = {
|
||||
border = vim.g.bc.style,
|
||||
margin = { 0, 0, 0, 0 },
|
||||
},
|
||||
})
|
||||
|
||||
wk.register({
|
||||
["<leader>"] = {
|
||||
y = { '"+y', "Copy to clipboard" },
|
||||
p = { '"+p', "Paste from clipboard" },
|
||||
gd = { "<cmd>Gvdiff!<CR>", "Git diff" },
|
||||
gg = { "<cmd>LazyGit<cr>", "LazyGit" },
|
||||
qq = { "<cmd>qall<cr>", "Quit all" },
|
||||
},
|
||||
}, { mode = { "n", "v" } })
|
||||
|
||||
wk.register({
|
||||
["<C-s>"] = {
|
||||
"<cmd>:w<cr>",
|
||||
"Save File",
|
||||
},
|
||||
})
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
indent_type = "Spaces"
|
||||
indent_width = 2
|
||||
column_width = 120
|
Loading…
Add table
Reference in a new issue