gitingonre and stylelua
This commit is contained in:
parent
628445f3c0
commit
e99d0eba74
|
@ -1,3 +1,53 @@
|
||||||
|
# Project gitignore
|
||||||
|
.luarc.json
|
||||||
|
after
|
||||||
|
coc-settings.json
|
||||||
|
colors
|
||||||
|
docs
|
||||||
|
ftplugin
|
||||||
|
ginit.vim
|
||||||
|
lua/user
|
||||||
|
neoconf.json
|
||||||
|
plugin
|
||||||
|
queries
|
||||||
|
spell
|
||||||
|
|
||||||
|
# Global gitignore
|
||||||
|
# ----------------
|
||||||
|
|
||||||
|
# Mac OS X
|
||||||
|
.AppleDouble
|
||||||
|
.DS_Store
|
||||||
|
.LSOverride
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Windoze
|
||||||
|
$RECYCLE.BIN/
|
||||||
|
Thumbs.db
|
||||||
|
Thumbs.db:encryptable
|
||||||
|
ehthumbs.db
|
||||||
|
ehthumbs_vista.db
|
||||||
|
|
||||||
|
# (Neo)Vim
|
||||||
|
*~
|
||||||
|
.netrwhist
|
||||||
|
Session.vim
|
||||||
|
Sessionx.vim
|
||||||
|
[._]*.s[a-v][a-z]
|
||||||
|
[._]*.sw[a-p]
|
||||||
|
[._]s[a-rt-v][a-z]
|
||||||
|
[._]ss[a-gi-z]
|
||||||
|
[._]sw[a-p]
|
||||||
|
[._]*.un~
|
||||||
|
tags
|
||||||
|
|
||||||
|
# VS Code
|
||||||
|
.history
|
||||||
|
.vscode
|
||||||
|
|
||||||
|
# JetBrains
|
||||||
|
.idea
|
||||||
|
|
||||||
tags
|
tags
|
||||||
test.sh
|
test.sh
|
||||||
.luarc.json
|
.luarc.json
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
column_width = 160
|
column_width = 120
|
||||||
line_endings = "Unix"
|
line_endings = "Unix"
|
||||||
indent_type = "Spaces"
|
indent_type = "Spaces"
|
||||||
indent_width = 2
|
indent_width = 2
|
||||||
quote_style = "AutoPreferSingle"
|
quote_style = "AutoPreferDouble"
|
||||||
call_parentheses = "None"
|
call_parentheses = "None"
|
||||||
|
collapse_simple_statement = "Always"
|
||||||
|
|
Loading…
Reference in New Issue