Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ih-config v2. #5

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions git/.gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,10 @@
branch = false
[init]
defaultBranch = main
templateDir = /Users/matt.layman/.ih/git-template
[alias]
gone = "!f() { git fetch --all --prune; git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -D; }; f"
[core]
excludesfile = /Users/matt.layman/.gitignore_global
[url "[email protected]:ConsultingMD"]
insteadOf = https://github.com/ConsultingMD
8 changes: 7 additions & 1 deletion nvim/lua/mblayman/plugins/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,13 @@ return {
-- See `:help lspconfig-all` for a list of all the pre-configured LSPs
local servers = {
clangd = {}, -- C
gopls = {}, -- Go
gopls = {
settings = {
gopls = {
buildFlags = { "-tags=acceptance server" },
},
},
}, -- Go
pyright = {}, -- Python
lua_ls = {
-- cmd = {...},
Expand Down
6 changes: 6 additions & 0 deletions starship.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ command_timeout = 1000

[aws]
disabled = true

[custom.aws]
command = 'echo "$AWS_ENVIRONMENT/$AWS_ENVIRONMENT_ROLE:$AWS_DEFAULT_REGION"'
format = "[$symbol ($output)]($style) "
symbol = "🌩 "
when = true
3 changes: 3 additions & 0 deletions zsh/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ source $ZSH/oh-my-zsh.sh
eval "$(direnv hook zsh)"
eval "$(starship init zsh)"

# This loads the Included Health shell augmentations into your interactive shell
. "$HOME/.ih/augment.sh"

# You may need to manually set your language environment
# export LANG=en_US.UTF-8

Expand Down