Add custom coc-settings.json

This commit is contained in:
Daniel Lynn 2021-06-16 16:29:32 -05:00
parent cee9af49cc
commit 4749f355f3
4 changed files with 33 additions and 0 deletions

View File

@ -31,3 +31,7 @@ vimrc = { source = "vimrc", target = ".vimrc" }
# tmux # tmux
tmux = { source = "tmux", target = ".config/tmux" } tmux = { source = "tmux", target = ".config/tmux" }
tmux_conf = { source = "tmux.conf", target = ".tmux.conf" } tmux_conf = { source = "tmux.conf", target = ".tmux.conf" }
# git
git_templates = { source = "git-templates", target = ".git-templates" }
gitignore = { source = "gitignore", target = ".gitignore" }

View File

@ -0,0 +1,11 @@
<PULL_REQUEST_TITLE>
# Problem
<DESCRIPTION>
# Solution
<IMPLEMENTATION DETAILS>
---
###### @shopsmart/web-team | [Ticket](<TICKET_URL>)

11
gitignore Normal file
View File

@ -0,0 +1,11 @@
.DS_Store
*.sw[nop]
.env
tags
!tags/
tmp/**/*
*.pyc
.vimrc
.irbrc
.pryrc
.psqlrc

7
nvim/coc-settings.json Normal file
View File

@ -0,0 +1,7 @@
{
"git.addedSign.text": "▐",
"git.changedSign.text": "▐",
"git.removedSign.text": "▐",
"git.topRemovedSign.text": "▐",
"git.changeRemovedSign.text": "▐"
}