forked from 4coder-archive/4coder_fleury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.4coder
101 lines (83 loc) · 3.11 KB
/
config.4coder
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// Command Mapping
// "" - Leave the bindings unaltered - use this when writing your own customization!
// "choose" - Ask 4coder to choose based on platform.
// "default" - Use the default keybindings 4coder has always had.
// "mac-default" - Use keybindings similar to those found in other Mac applications.
mapping = "";
// MODE
// "4coder" - The default 4coder mode that has been around since the beginning of time (2015)
// "notepad-like" - Single "thin" cursor and highlight ranges like in notepad, sublime, notepad++, etc
mode = "4coder";
bind_by_physical_key = false;
// UI
use_scroll_bars = true;
use_file_bars = true;
use_error_highlight = true;
use_jump_highlight = false;
use_scope_highlight = false;
use_paren_helper = true;
use_comment_keywords = true;
lister_whole_word_backspace_when_modified = false;
show_line_number_margins = true;
enable_output_wrapping = true;
enable_undo_fade_out = false;
// cursor_roundess is a value [0,50] setting the radius of
// the cursor and mark's roundness as a percentage of their width
// (At 50 the left and right corners will be so round they form a semi-circle,
// hence 50 is the max)
cursor_roundness = 25;
// mark_thickness is a pixel count value setting the
// thickness of the mark wire box in original mode
mark_thickness = 2;
// lister_roundess is a value [0,50] setting the radius of
// the lister items' roundness as a percentage of their height
lister_roundness = 20;
// Code Wrapping
treat_as_code = ".cpp.c.hpp.h.cc.odin.glsl.4coder.vert.frag";
enable_virtual_whitespace = true;
virtual_whitespace_regular_indent = 2;
enable_code_wrapping = true;
// This only applies to code files in code-wrapping mode.
// Plain text and code files without virtual-whitespace will not be effected.
automatically_indent_text_on_save = true;
// When set to true, all unsaved changes will be saved on a build.
automatically_save_changes_on_build = true;
// Load project on startup
automatically_load_project = true;
// Indentation
indent_with_tabs = false;
indent_width = 4;
default_tab_width = 4;
// Theme
default_theme_name = "theme-ayu_dark";
highlight_line_at_cursor = true;
// Font
default_font_name = "JetBrainsMono-Regular.ttf";
default_font_size = 15;
default_font_size = 16;
default_font_hinting = true;
// aa modes:
// 8bit - mono-chrome 0-255 opacity channel per pixel
// 1bit - mono-chrome 0/1 opacity channel per pixel
default_font_aa_mode = "8bit";
// User
user_name = "jack";
// Keyboard AltGr setting
lalt_lctrl_is_altgr = false;
// Project setup configuration
default_compiler_bat = "cl";
default_flags_bat = "-FC -GR- -EHa- -nologo -Zi";
default_compiler_sh = "g++";
default_flags_sh = "-g";
// NOTE(rjf): Fleury 4coder Disabling Options
// f4_disable_brace_highlight = true;
// f4_disable_close_brace_annotation = true;
// f4_disable_brace_lines = true;
// f4_disable_progress_bar = true;
// f4_disable_divider_comments = true;
// f4_disable_error_annotations = true;
// f4_disable_calc_comments = true;
// f4_poscontext_draw_at_bottom_of_buffer = true;
// f4_disable_poscontext = true;
// f4_disable_cursor_token_occurance = true;
f4_margin_size = 2;