feat: Added git config
26affd5c
4 file(s) · +173 −5
| 1 | + | [user] |
|
| 2 | + | name = Steve simkins |
|
| 3 | + | email = stevedsimkins@gmail.com |
|
| 4 | + | signingkey = ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCg5SovL4D8z2lT8m2FG+94fPWOn0Ia7IxD3Q9dujCMMz0NqzHYdNTOJXe81MzugLDWFsWFds2FZhJxUdJ12+VhCdJRS5K1wTvf1gdkvXUK7hvemLPPNj+Qwmokw+qVw3LOm8MIITvN0q8tploZ+GuOSvwldootPdm/YwQLhzYafYTSh4YeiCuU5TmZy7YzVuaECle1quqaI8MJ/PO2tvJurSW8QSBBBZh9u/95fAHNCe0Yr3Zvq1zhyXkpf6Z+lXOOoxxhFwvsTs7pJqCqNK/1csu1Ci17pNsBnEEMreR+jojyOMRyR8wi4L7VODNlc25QndsivqhKXybGxRRZZY+KMlpQYTip5SF35KCUP6K3F4uImbRnxzbwBgeOYxRwxyucV4RswdXGk8+PpI1ahdyHGccGJT8uRc8d6wbEY7R5AZE814In6KzzDceOw2dErsItdtmWaEVf7nJ30A3wvUE74bPOPFDjd2DTqI4zcQssdDO1d+7kvw/hLRWZgGzuQNogfl5Pk81UJoiFn5DXMBY2LJi7Y+U9Xva7foWVibqhCWQrXD2PNb0BDtVluJGokd7WSAx3nxDou1qOU6Itq49vbcHZfx2b4mNmGkXJTBMO6a7prRHz6bGjjHaftTgj/tsQNgT5YQX0Ew+EP5gYlfs1eCUwnA8OOBQjPvjSVvCXNQ== |
|
| 5 | + | ||
| 6 | + | [core] |
|
| 7 | + | compression = 9 |
|
| 8 | + | whitespace = error |
|
| 9 | + | preloadindex = true |
|
| 10 | + | ||
| 11 | + | [commit] |
|
| 12 | + | template = ~/.config/git/template |
|
| 13 | + | gpgsign = true |
|
| 14 | + | ||
| 15 | + | [advice] |
|
| 16 | + | addEmptyPathspec = false |
|
| 17 | + | pushNonFastForward = false |
|
| 18 | + | ||
| 19 | + | [url "git@github.com:stevedylandev/"] |
|
| 20 | + | insteadOf = "stevedylandev:" |
|
| 21 | + | ||
| 22 | + | [url "git@github.com:"] |
|
| 23 | + | insteadOf = "gh:" |
|
| 24 | + | ||
| 25 | + | [init] |
|
| 26 | + | defaultBranch = main |
|
| 27 | + | ||
| 28 | + | [status] |
|
| 29 | + | branch = true |
|
| 30 | + | showStash = true |
|
| 31 | + | showUntrackedFiles = all |
|
| 32 | + | ||
| 33 | + | [diff] |
|
| 34 | + | context = 3 |
|
| 35 | + | interHunkContext = 10 |
|
| 36 | + | ||
| 37 | + | [push] |
|
| 38 | + | followTags = true |
|
| 39 | + | ||
| 40 | + | [pull] |
|
| 41 | + | default = current |
|
| 42 | + | rebase = true |
|
| 43 | + | ||
| 44 | + | [rebase] |
|
| 45 | + | autoStash = true |
|
| 46 | + | missingCommitsCheck = warn |
|
| 47 | + | ||
| 48 | + | [log] |
|
| 49 | + | abbrevCommit = true |
|
| 50 | + | graphColors = blue,yellow,cyan,megenta,green,red |
|
| 51 | + | ||
| 52 | + | [color "diff"] |
|
| 53 | + | meta = black bold |
|
| 54 | + | frag = magenta |
|
| 55 | + | context = white |
|
| 56 | + | whitespace = yellow reverse |
|
| 57 | + | old = red |
|
| 58 | + | ||
| 59 | + | [color "decorate"] |
|
| 60 | + | HEAD = red |
|
| 61 | + | branch = blue |
|
| 62 | + | tag = yellow |
|
| 63 | + | remoteBranch = magenta |
|
| 64 | + | ||
| 65 | + | [color "branch"] |
|
| 66 | + | current = magenta |
|
| 67 | + | local = default |
|
| 68 | + | remote = yellow |
|
| 69 | + | upstream = green |
|
| 70 | + | plain = blue |
|
| 71 | + | ||
| 72 | + | [branch] |
|
| 73 | + | sort = -committerdate |
|
| 74 | + | ||
| 75 | + | [tag] |
|
| 76 | + | sort = -taggerdate |
|
| 77 | + | ||
| 78 | + | ||
| 79 | + | ||
| 80 | + | [gpg] |
|
| 81 | + | format = ssh |
|
| 82 | + | [gpg "ssh"] |
|
| 83 | + | program = /Applications/1Password.app/Contents/MacOS/op-ssh-sign |
| 1 | + | # Python specific |
|
| 2 | + | .venv/ |
|
| 3 | + | .mypy_cache/ |
|
| 4 | + | .pytest_cache/ |
|
| 5 | + | __pycache__/ |
|
| 6 | + | .hypothesis/ |
|
| 7 | + | .ruff_cache/ |
|
| 8 | + | .ropeproject/ |
|
| 9 | + | ||
| 10 | + | # Typescript |
|
| 11 | + | node_modules/ |
|
| 12 | + | dist/ |
|
| 13 | + | *.tsbuildinfo |
|
| 14 | + | .npm |
|
| 15 | + | .yarn |
|
| 16 | + | yarn-error.log |
|
| 17 | + | npm-debug.log |
|
| 18 | + | .env |
|
| 19 | + | .env.local |
|
| 20 | + | .env.development.local |
|
| 21 | + | .env.test.local |
|
| 22 | + | .env.production.local |
|
| 23 | + | ||
| 24 | + | # Rust |
|
| 25 | + | /target/ |
|
| 26 | + | **/*.rs.bk |
|
| 27 | + | Cargo.lock |
|
| 28 | + | .cargo/ |
|
| 29 | + | ||
| 30 | + | # Go |
|
| 31 | + | /bin/ |
|
| 32 | + | /pkg/ |
|
| 33 | + | /vendor/ |
|
| 34 | + | *.exe |
|
| 35 | + | *.exe~ |
|
| 36 | + | *.dll |
|
| 37 | + | *.so |
|
| 38 | + | *.dylib |
|
| 39 | + | *.test |
|
| 40 | + | *.out |
|
| 41 | + | go.work |
|
| 42 | + | ||
| 43 | + | # Common |
|
| 44 | + | .DS_Store |
|
| 45 | + | .idea/ |
|
| 46 | + | .vscode/ |
|
| 47 | + | *.swp |
|
| 48 | + | *.swo |
|
| 49 | + | .project |
|
| 50 | + | .classpath |
|
| 51 | + | .settings/ |
| 1 | + | # feat: ✨ |
|
| 2 | + | # feat: 🔍 |
|
| 3 | + | # feat: 🔗 |
|
| 4 | + | # feat: 🔒 |
|
| 5 | + | ||
| 6 | + | # fix: 🐛 |
|
| 7 | + | # fix: 🐞 |
|
| 8 | + | # fix: 🩹 |
|
| 9 | + | # fix: 🚑️ |
|
| 10 | + | ||
| 11 | + | # style: 💅 |
|
| 12 | + | # style: 🎨 |
|
| 13 | + | # style: 💄 |
|
| 14 | + | ||
| 15 | + | # ci: 🦊 |
|
| 16 | + | # ci: 📦 |
|
| 17 | + | ||
| 18 | + | # deploy: 🚀 |
|
| 19 | + | # deploy: 📦 |
|
| 20 | + | ||
| 21 | + | # chore: 🧹 |
|
| 22 | + | # chore: 🔧 |
|
| 23 | + | # chore: ⚙️ |
|
| 24 | + | # docs: 📜 |
|
| 25 | + | ||
| 26 | + | # refactor: 🔨 |
|
| 27 | + | # perf: 🚀 |
|
| 28 | + | ||
| 29 | + | # test: 🚦 |
|
| 30 | + | # debug: 🧪 |
|
| 31 | + | ||
| 32 | + | # BREAKING CHANGE: 🚨 |
|
| 33 | + | # BREAKING CHANGE: 💥 |
|
| 34 | + | # BREAKING CHANGE: 💣 |
| 1 | 1 | { |
|
| 2 | 2 | "Comment.nvim": { "branch": "master", "commit": "e30b7f2008e52442154b66f7c519bfd2f1e32acb" }, |
|
| 3 | - | "LuaSnip": { "branch": "master", "commit": "66b5c2707e624dcd2cd3605676c64a2efe47e9d1" }, |
|
| 3 | + | "LuaSnip": { "branch": "master", "commit": "eda5be8f0ce9816278671f0b578cdbb8b762c701" }, |
|
| 4 | 4 | "blink.cmp": { "branch": "main", "commit": "9bcb14b43852a6f2bfd5ac9ef29cb5cf09b1b39b" }, |
|
| 5 | - | "conform.nvim": { "branch": "master", "commit": "973f3cb73887d510321653044791d7937c7ec0fa" }, |
|
| 5 | + | "conform.nvim": { "branch": "master", "commit": "8132ec733eed3bf415b97b76797ca41b59f51d7d" }, |
|
| 6 | 6 | "darkmatter-nvim": { "branch": "main", "commit": "c79d9218d3477b038060c0d592c4b22be22161d4" }, |
|
| 7 | 7 | "friendly-snippets": { "branch": "main", "commit": "572f5660cf05f8cd8834e096d7b4c921ba18e175" }, |
|
| 8 | - | "gitsigns.nvim": { "branch": "main", "commit": "4666d040b60d1dc0e474ccd9a3fd3c4d67b4767c" }, |
|
| 8 | + | "gitsigns.nvim": { "branch": "main", "commit": "1b0350ab707713b2bc6c236151f1a324175347b1" }, |
|
| 9 | 9 | "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }, |
|
| 10 | 10 | "lazydev.nvim": { "branch": "main", "commit": "2367a6c0a01eb9edb0464731cc0fb61ed9ab9d2c" }, |
|
| 11 | 11 | "lualine.nvim": { "branch": "master", "commit": "a94fc68960665e54408fe37dcf573193c4ce82c9" }, |
|
| 12 | - | "neo-tree.nvim": { "branch": "v3.x", "commit": "cea666ef965884414b1b71f6b39a537f9238bdb2" }, |
|
| 12 | + | "neo-tree.nvim": { "branch": "v3.x", "commit": "f481de16a0eb59c985abac8985e3f2e2f75b4875" }, |
|
| 13 | 13 | "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, |
|
| 14 | 14 | "nvim-surround": { "branch": "main", "commit": "8dd9150ca7eae5683660ea20cec86edcd5ca4046" }, |
|
| 15 | 15 | "nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" }, |
|
| 16 | 16 | "nvim-treesitter-textobjects": { "branch": "master", "commit": "89ebe73cd2836db80a22d9748999ace0241917a5" }, |
|
| 17 | - | "nvim-web-devicons": { "branch": "master", "commit": "a1366758b3a232036dc97be8ca41184aa3f50506" }, |
|
| 17 | + | "nvim-web-devicons": { "branch": "master", "commit": "19d6211c78169e78bab372b585b6fb17ad974e82" }, |
|
| 18 | 18 | "plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" }, |
|
| 19 | 19 | "telescope.nvim": { "branch": "master", "commit": "d90956833d7c27e73c621a61f20b29fdb7122709" }, |
|
| 20 | 20 | "vim-sleuth": { "branch": "master", "commit": "be69bff86754b1aa5adcbb527d7fcd1635a84080" }, |