From 4749f355f3bac4b91315fd9d1aed7354ab3c14ee Mon Sep 17 00:00:00 2001 From: Daniel Lynn Date: Wed, 16 Jun 2021 16:29:32 -0500 Subject: [PATCH] Add custom coc-settings.json --- bombadil.toml | 4 ++++ git-templates/pull-request.web-team | 11 +++++++++++ gitignore | 11 +++++++++++ nvim/coc-settings.json | 7 +++++++ 4 files changed, 33 insertions(+) create mode 100644 git-templates/pull-request.web-team create mode 100644 gitignore create mode 100644 nvim/coc-settings.json diff --git a/bombadil.toml b/bombadil.toml index 6b23a84..9718aaf 100644 --- a/bombadil.toml +++ b/bombadil.toml @@ -31,3 +31,7 @@ vimrc = { source = "vimrc", target = ".vimrc" } # tmux tmux = { source = "tmux", target = ".config/tmux" } tmux_conf = { source = "tmux.conf", target = ".tmux.conf" } + +# git +git_templates = { source = "git-templates", target = ".git-templates" } +gitignore = { source = "gitignore", target = ".gitignore" } diff --git a/git-templates/pull-request.web-team b/git-templates/pull-request.web-team new file mode 100644 index 0000000..3f4c7cb --- /dev/null +++ b/git-templates/pull-request.web-team @@ -0,0 +1,11 @@ + + +# Problem + + +# Solution + + +--- + +###### @shopsmart/web-team | [Ticket]() diff --git a/gitignore b/gitignore new file mode 100644 index 0000000..c2d117e --- /dev/null +++ b/gitignore @@ -0,0 +1,11 @@ +.DS_Store +*.sw[nop] +.env +tags +!tags/ +tmp/**/* +*.pyc +.vimrc +.irbrc +.pryrc +.psqlrc diff --git a/nvim/coc-settings.json b/nvim/coc-settings.json new file mode 100644 index 0000000..4f40571 --- /dev/null +++ b/nvim/coc-settings.json @@ -0,0 +1,7 @@ +{ + "git.addedSign.text": "▐", + "git.changedSign.text": "▐", + "git.removedSign.text": "▐", + "git.topRemovedSign.text": "▐", + "git.changeRemovedSign.text": "▐" +}