-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
177 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: PR Checks | ||
on: pull_request | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- name: Install Nix | ||
uses: cachix/install-nix-action@v17 | ||
- name: Lint Nix Files | ||
run: nix develop --command alejandra -c . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
return { | ||
{ | ||
'nvimdev/dashboard-nvim', | ||
event = 'VimEnter', | ||
config = function() | ||
require('dashboard').setup { | ||
-- config | ||
} | ||
end, | ||
dependencies = { {'nvim-tree/nvim-web-devicons'}} | ||
}, | ||
{ | ||
"nvimdev/dashboard-nvim", | ||
event = "VimEnter", | ||
config = function() | ||
require("dashboard").setup({ | ||
-- config | ||
}) | ||
end, | ||
dependencies = { { "nvim-tree/nvim-web-devicons" } }, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
return { | ||
-- Do Git Things | ||
'tpope/vim-fugitive', | ||
-- Do GitHub Things | ||
'tpope/vim-rhubarb', | ||
-- Do Git Things | ||
"tpope/vim-fugitive", | ||
-- Do GitHub Things | ||
"tpope/vim-rhubarb", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
return { | ||
{ | ||
"ThePrimeagen/harpoon", | ||
branch = "harpoon2", | ||
dependencies = { "nvim-lua/plenary.nvim" } | ||
} | ||
{ | ||
"ThePrimeagen/harpoon", | ||
branch = "harpoon2", | ||
dependencies = { "nvim-lua/plenary.nvim" }, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
return { | ||
{ | ||
'neovim/nvim-lspconfig', | ||
dependencies = { | ||
-- Useful status updates for LSP | ||
'j-hui/fidget.nvim', | ||
-- TODO: Need to make this enabled inside bigbang dir | ||
'folke/neodev.nvim', | ||
}, | ||
} | ||
{ | ||
"neovim/nvim-lspconfig", | ||
dependencies = { | ||
-- Useful status updates for LSP | ||
"j-hui/fidget.nvim", | ||
-- TODO: Need to make this enabled inside bigbang dir | ||
"folke/neodev.nvim", | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.