Created
November 26, 2024 18:24
-
-
Save ArtemAvramenko/861ae1107c99c375efdfc88971e4a143 to your computer and use it in GitHub Desktop.
SciTE text editor config
This file contains 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
# https://www.scintilla.org/SciTEDoc.html | |
# Encoding (UTF-8) and line feed | |
code.page=65001 | |
eol.mode=LF | |
eol.auto=1 | |
# Indentation: 4 spaces | |
tabsize=4 | |
indent.size=4 | |
use.tabs=0 | |
# View whitespaces | |
view.whitespace=1 | |
whitespace.fore=#ffdddd | |
representations=!0,#ffdddd,\x0A=⏐,#ffbbbb,\x0D=← | |
view.eol=1 | |
# Colors | |
caret.line.back=#e8e8ff | |
style.cpp.5=fore:#0000ff | |
style.cpp.10=fore:#0000ff | |
# Font | |
technology=0 | |
font.quality=2 | |
font.base=font:Codescopix,size:10.5 | |
font.comment=font:Codescopix,size:10.5 | |
font.monospace=font:Lucida Sans Typewriter,size:11 | |
# Markers | |
change.history=3 | |
edge.mode=1 | |
edge.column=120 | |
# Multiselect | |
selection.multiple=1 | |
selection.additional.typing=1 | |
selection.multipaste =1 | |
# Window position | |
position.left=256 | |
position.top=64 | |
position.width=1024 | |
position.height=768 | |
position.maximize=1 | |
# UI settings | |
tabbar.multiline=1 | |
tabbar.hide.index=1 | |
statusbar.visible=1 | |
statusbar.number=1 | |
statusbar.text.1=Lang: $(Language) ⏐ Zoom: $(ZoomFactor) ⏐ length: $(BufferLength) lines: $(NbOfLines) ⏐ $(EOLMode) ⏐ $(OverType) ⏐ Ln: $(LineNumber) Col: $(ColumnNumber) Sel: $(SelLength) | $(SelHeight) | |
title.full.path=1 | |
buffers.zorder.switching=1 | |
# Editor settings | |
line.margin.visible=1 | |
line.margin.width=4+ | |
fold.symbols=3 | |
# File dialogs | |
open.dialog.in.file.directory=1 | |
save.session=1 | |
save.recent=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment