Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #187 from caarlos0/atom
Browse files Browse the repository at this point in the history
updated atom config
  • Loading branch information
caarlos0 committed Apr 10, 2016
2 parents 3d6dee9 + 893833a commit 3289bb0
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 16 deletions.
14 changes: 11 additions & 3 deletions atom.symlink/config.cson
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,32 @@
disabledPackages: [
"metrics"
"exception-reporting"
"linter-pep8"
]
hideGitIgnoredFiles: true
projectHome: "~/Code/"
themes: [
"native-ui"
"one-dark-syntax"
]
editor:
fontFamily: "Hack"
fontSize: 15
invisibles: {}
scrollPastEnd: true
showIndentGuide: true
showInvisibles: true
"file-icons":
coloured: false
tabPaneIcon: false
"go-plus":
goPath: "~/Code/Go"
"go-rename": {}
gofmt:
formatTool: "goreturns"
linter: {}
"linter-pep8": {}
"one-dark-ui": {}
"tree-view":
hideVcsIgnoredFiles: true
"unity-ui":
showIcons: true
welcome:
showOnStartup: false
16 changes: 9 additions & 7 deletions atom.symlink/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,21 @@ if test ! "$(which apm)"; then
return 0
fi
apm install \
atom-beautify \
atom-wrap-in-tag \
color-picker \
editorconfig \
language-docker \
file-icons \
go-plus \
go-rename \
language-diff \
language-docker \
language-puppet \
language-terraform \
linter \
linter-jshint \
linter-ruby \
atom-beautify \
color-picker \
go-plus \
go-rename \
sort-lines \
file-icons
native-ui \
one-dark-syntax \
sort-lines
apm remove metrics exception-reporting
12 changes: 6 additions & 6 deletions atom.symlink/snippets.cson
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
'return nil and error':
'prefix': 'rne'
'body': 'return nil, err'
'return false and error':
'prefix': 'rfe'
'body': 'return false, err'
'Return True and Nil':
'prefix': 'rte'
'body': 'return true, nil'
'return false and error':
'prefix': 'rfe'
'body': 'return false, err'
'Return True and Nil':
'prefix': 'rte'
'body': 'return true, nil'
'Create test':
'prefix': 'test'
'body': """
Expand Down

0 comments on commit 3289bb0

Please sign in to comment.