Skip to content

Instantly share code, notes, and snippets.

View rsansores's full-sized avatar

Ricardo Sansores rsansores

  • Smart Software Factory
  • Mexico
View GitHub Profile
@ianchesal
ianchesal / overrides.lua
Created May 8, 2023 18:45
copilot.lua + copilot-cmp in NvChad
-- Add the following in your custom/configs/overrides.lua file. You can configure copilot to meet your needs here.
M.copilot = {
-- Possible configurable fields can be found on:
-- https://github.com/zbirenbaum/copilot.lua#setup-and-configuration
suggestion = {
enable = false,
},
panel = {
enable = false,
@LukeMathWalker
LukeMathWalker / audit-on-push.yml
Last active January 10, 2025 15:10
GitHub Actions - Rust setup with Postgres + sqlx
name: Security audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
security_audit:
runs-on: ubuntu-latest
steps: