Created
June 8, 2011 23:25
-
-
Save stuartpb/1015713 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # the full list is at http://www.scintilla.org/SciTEDoc.html # | |
| #settings provided in Lua for Windows' SciTEGlobal.properties | |
| import minilfw | |
| #font change | |
| font.base=font:Consolas,size:8 | |
| font.small=$(font.base) | |
| font.comment=$(font.base) | |
| font.code.comment.box=$(font.comment) | |
| font.code.comment.line=$(font.comment) | |
| font.code.comment.doc=$(font.comment) | |
| font.code.comment.nested=$(font.comment) | |
| font.text=$(font.base) | |
| font.text.comment=$(font.base) | |
| font.embedded.base=$(font.base) | |
| font.embedded.comment=$(font.base) | |
| font.monospace=$(font.base) | |
| font.vbs=$(font.base) | |
| #my custom colors | |
| #import gob #going to set colors through lua | |
| #prioritize strings when double-clicking instead of, like, words in strings | |
| scite.double.click.select.string=1 | |
| #enabling whitespace after folding | |
| fold.compact=0 | |
| #disabling scite's stupid autocompletion | |
| autocompleteword.automatic=0 | |
| #enabling unicode by defaulting to UTF-8 | |
| code.page=65001 | |
| #block comment changing | |
| #comment.block.lua=-- | |
| #comment.block.at.line.start.lua=0 | |
| #disabling Lua 4 | |
| keywords2.$(file.patterns.lua)=$(keywordclass2.lua) $(keywordclass2.lua5) | |
| keywords3.$(file.patterns.lua)=$(keywordclass3.lua5) | |
| keywords4.$(file.patterns.lua)=$(keywordclass4.lua5) | |
| # Indentation | |
| tabsize=2 | |
| indent.size=2 | |
| use.tabs=0 | |
| indent.auto=1 | |
| indent.automatic=1 | |
| indent.opening=0 | |
| indent.closing=0 | |
| #tab.indents=0 | |
| #backspace.unindents=0 | |
| indent.maintain.$(file.patterns.lua)=0 | |
| # Wrapping | |
| wrap=1 | |
| #output.wrap=1 | |
| #cache.layout=3 | |
| wrap.visual.flags=1 | |
| wrap.visual.flags.location=1 | |
| wrap.indent.mode=2 | |
| #wrap.aware.home.end.keys =1 | |
| fold.symbols=3 | |
| find.mark=1 | |
| if PLAT_WIN | |
| all.files=All Files (*.*)|*.*| | |
| if PLAT_GTK | |
| all.files=All Files (*)|*|Hidden Files (.*)|.*| | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment