Compare commits
3 Commits
b5056a4fe8
...
ac324b42cc
Author | SHA1 | Date | |
---|---|---|---|
ac324b42cc | |||
60516b4085 | |||
64061943ed |
1
.github/FUNDING.yml
vendored
1
.github/FUNDING.yml
vendored
@ -1 +0,0 @@
|
|||||||
github: mrcjkb
|
|
44
.github/workflows/check.yml
vendored
Normal file
44
.github/workflows/check.yml
vendored
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
name: Perform checks
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
formatting:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Install nix
|
||||||
|
uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||||||
|
- name: Check Nix flake inputs
|
||||||
|
uses: DeterminateSystems/flake-checker-action@v4 # This action
|
||||||
|
- name: Run nix fmt
|
||||||
|
run: nix fmt -- --check .
|
||||||
|
|
||||||
|
nix_flake_check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Install nix
|
||||||
|
uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||||||
|
- name: Check Nix flake inputs
|
||||||
|
uses: DeterminateSystems/flake-checker-action@v4 # This action
|
||||||
|
- name: Run nix flake check
|
||||||
|
run: nix flake check
|
||||||
|
|
||||||
|
nix_build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Install nix
|
||||||
|
uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- name: Check Nix flake inputs
|
||||||
|
uses: DeterminateSystems/flake-checker-action@v4 # This action
|
||||||
|
- name: Build dzgui
|
||||||
|
run: nix build .\#dzgui
|
||||||
|
- name: Build dzgui-testing
|
||||||
|
run: nix build .\#dzgui-testing
|
26
.github/workflows/update.yml
vendored
Normal file
26
.github/workflows/update.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: Update `flake.lock`
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update_lockfile:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Nix
|
||||||
|
uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- name: Update flake.lock
|
||||||
|
uses: DeterminateSystems/update-flake-lock@main
|
||||||
|
with:
|
||||||
|
# inputs: dzgui dzgui-testing # We'll see whether I want to limit the updates to dzgui
|
||||||
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
||||||
|
pr-title: "Update flake.lock"
|
||||||
|
pr-assignees: jiriks74
|
||||||
|
pr-labels: |
|
||||||
|
flake.lock
|
||||||
|
automated
|
||||||
|
- name: Print PR number
|
||||||
|
run: echo Pull request number is ${{ steps.update.outputs.pull-request-number }}.
|
@ -81,6 +81,7 @@ with final.pkgs.lib; let
|
|||||||
# ^ UI
|
# ^ UI
|
||||||
|
|
||||||
# language support
|
# language support
|
||||||
|
markdown-preview-nvim
|
||||||
# ^ language support
|
# ^ language support
|
||||||
|
|
||||||
# navigation/editing enhancement plugins
|
# navigation/editing enhancement plugins
|
||||||
|
@ -60,6 +60,8 @@ require('which-key').add({
|
|||||||
end,
|
end,
|
||||||
desc = "trouble: load [w]orkspace"
|
desc = "trouble: load [w]orkspace"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{ "<leader>lP", "<cmd>MarkdownPreviewToggle<cr>", desc = "Markdown [l] [P]review"},
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Toggle the quickfix list (only opens if it is populated)
|
-- Toggle the quickfix list (only opens if it is populated)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user