Initial commit - a few basic settings, carefully packaged so they work well as dotfiles
This commit is contained in:
commit
4cafaed545
4 changed files with 52 additions and 0 deletions
30
.gitignore
vendored
Normal file
30
.gitignore
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Cache files for Sublime Text
|
||||
*.tmlanguage.cache
|
||||
*.tmPreferences.cache
|
||||
*.stTheme.cache
|
||||
|
||||
# Workspace files are user-specific
|
||||
*.sublime-workspace
|
||||
|
||||
# Project files should be checked into the repository, unless a significant
|
||||
# proportion of contributors will probably not be using Sublime Text
|
||||
# *.sublime-project
|
||||
|
||||
# SFTP configuration file
|
||||
sftp-config.json
|
||||
|
||||
# Package control specific files
|
||||
Package Control.last-run
|
||||
Package Control.ca-list
|
||||
Package Control.ca-bundle
|
||||
Package Control.system-ca-bundle
|
||||
Package Control.cache/
|
||||
Package Control.ca-certs/
|
||||
Package Control.merged-ca-bundle
|
||||
Package Control.user-ca-bundle
|
||||
oscrypto-ca-bundle.crt
|
||||
bh_unicode_properties.cache
|
||||
|
||||
# Sublime-github package stores a github token in this file
|
||||
# https://packagecontrol.io/packages/sublime-github
|
||||
GitHub.sublime-settings
|
1
.stow-no-folding
Normal file
1
.stow-no-folding
Normal file
|
@ -0,0 +1 @@
|
|||
.config/sublime-text-3/Packages/.sublime-packages
|
1
.stow-rename
Normal file
1
.stow-rename
Normal file
|
@ -0,0 +1 @@
|
|||
config => .config
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"auto_complete_triggers": [
|
||||
{"characters": "<", "selector": "text.html"},
|
||||
{"characters": ".", "selector": "source.js"}
|
||||
],
|
||||
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
|
||||
"default_line_ending": "unix",
|
||||
"enable_tab_scrolling": false,
|
||||
"ensure_newline_at_eof_on_save": true,
|
||||
"font_face": "FuraCode Nerd Font",
|
||||
"font_size": 14,
|
||||
"ignored_packages": [
|
||||
"Vintage"
|
||||
],
|
||||
"show_encoding": true,
|
||||
"show_line_endings": true,
|
||||
"spacegray_fileicons": true,
|
||||
"tab_size": 2,
|
||||
"theme": "Adaptive.sublime-theme"
|
||||
}
|
Loading…
Reference in a new issue