Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5edfba8
pretty stable
youvegotmoxie Oct 29, 2024
0532b54
remove empty icon table
youvegotmoxie Oct 29, 2024
a6d2749
swap statuslines
youvegotmoxie Oct 29, 2024
f02794d
add groovy lang server and shfmt
youvegotmoxie Oct 30, 2024
a750b1d
fix tabs not shifting over when opening neo-tree
youvegotmoxie Oct 30, 2024
37bdc66
add cmd history support to telescope
youvegotmoxie Oct 30, 2024
f78fe7e
updates
youvegotmoxie Oct 31, 2024
0d6562c
Update init.lua
youvegotmoxie Oct 31, 2024
2304f20
Merge pull request #2 from youvegotmoxie/chore/sync
youvegotmoxie Oct 31, 2024
16a0632
add dashboard plugin
youvegotmoxie Nov 5, 2024
5852212
Add telescope zoxide extension and update dashboard plugin
youvegotmoxie Nov 12, 2024
897cc8f
Merge pull request #3 from youvegotmoxie/feature/add-telescope-zoxide…
youvegotmoxie Nov 12, 2024
8ae28dc
add helm ls
youvegotmoxie Nov 13, 2024
41b8caf
disable yaml lang server because it breaks helm templates
youvegotmoxie Nov 13, 2024
8b039cc
tabs -> spaces
youvegotmoxie Nov 18, 2024
44859c2
config tabs
youvegotmoxie Nov 21, 2024
d13b42b
Merge pull request #4 from nvim-lua/master
youvegotmoxie Dec 11, 2024
cede254
Merge remote-tracking branch 'upstream' into chore/sync-fork
youvegotmoxie Mar 7, 2025
40a935d
Merge pull request #5 from youvegotmoxie/chore/sync-fork
youvegotmoxie Mar 7, 2025
d3481db
add k8s utils
youvegotmoxie Mar 21, 2025
842e31e
Merge pull request #6 from youvegotmoxie/feature/k8s-integration
youvegotmoxie Mar 21, 2025
7635cec
add apply manifest from buffer keybind
youvegotmoxie Mar 21, 2025
0afec68
trivial
youvegotmoxie Mar 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: check-added-large-files
- id: end-of-file-fixer
- repo: https://github.com/hhatto/autopep8
rev: 'v2.3.2'
hooks:
- id: autopep8
- repo: https://github.com/gitleaks/gitleaks.git
rev: 'v8.24.0'
hooks:
- id: gitleaks
- repo: https://github.com/koalaman/shellcheck-precommit
rev: v0.10.0
hooks:
- id: shellcheck
exclude: .*jenkins-slave$
- repo: https://github.com/hadolint/hadolint
rev: v2.13.1-beta
hooks:
- id: hadolint-docker
args:
- --ignore=DL3015 # Ignore not using --no-install-recommends with apt
- --ignore=DL3008 # Ignore not pinning all software package versions (apt-get)
- --ignore=DL3018 # Ignore not pinning all software package versions (apk)
- --ignore=SC1091 # Ignore missing shellcheck mock files
- repo: https://github.com/gruntwork-io/pre-commit
rev: 'v0.1.26'
hooks:
- id: terraform-validate
Loading