Created
March 14, 2020 06:31
-
-
Save dinhanhx/25294c99a31e69bdea4a119f6b5b45af to your computer and use it in GitHub Desktop.
A configured GUI file for R Gui/ R Editor
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
| # Optional parameters for the console and the pager | |
| # The system-wide copy is in rwxxxx/etc. | |
| # A user copy can be installed in `R_USER'. | |
| ## Style | |
| # This can be `yes' (for MDI) or `no' (for SDI). | |
| MDI = yes | |
| # the next two are only relevant for MDI | |
| toolbar = yes | |
| statusbar = no | |
| ## Font. | |
| # Please use only fixed width font. | |
| # If font=FixedFont the system fixed font is used; in this case | |
| # points and style are ignored. If font begins with "TT ", only | |
| # True Type fonts are searched for. | |
| font = TT Consolas | |
| points = 12 | |
| style = normal # Style can be normal, bold, italic | |
| # Dimensions (in characters) of the console. | |
| rows = 25 | |
| columns = 80 | |
| # Dimensions (in characters) of the internal pager. | |
| pgrows = 25 | |
| pgcolumns = 80 | |
| # should options(width=) be set to the console width? | |
| setwidthonresize = yes | |
| # memory limits for the console scrolling buffer, in chars and lines | |
| bufbytes = 250000 | |
| buflines = 8000 | |
| # Initial position of the console (pixels, relative to the workspace for MDI) | |
| xconsole = 0 | |
| yconsole = 0 | |
| # Dimension of MDI frame in pixels | |
| # Format (w*h+xorg+yorg) or use -ve w and h for offsets from right bottom | |
| # This will come up maximized if w==0 | |
| # MDIsize = 0*0+0+0 | |
| # MDIsize = 1000*800+100+0 | |
| # MDIsize = -50*-50+50+50 # 50 pixels space all round | |
| # The internal pager can displays help in a single window | |
| # or in multiple windows (one for each topic) | |
| # pagerstyle can be set to `singlewindow' or `multiplewindows' | |
| pagerstyle = singlewindow | |
| ## Colours for console and pager(s) | |
| # (see rwxxxx/etc/rgb.txt for the known colours). | |
| background = gray10 | |
| normaltext = orange | |
| usertext = salmon | |
| pagerbg = black | |
| pagertext = orange | |
| highlight = DarkSalmon | |
| dataeditbg = black | |
| dataedittext = orange | |
| dataedituser = PaleGoldenrod | |
| editorbg = black | |
| editortext = snow | |
| ## Initial position of the graphics window | |
| ## (pixels, <0 values from opposite edge) | |
| xgraphics = -25 | |
| ygraphics = 0 | |
| ## Language for messages | |
| language = | |
| ## Default setting for console buffering: 'yes' or 'no' | |
| buffered = yes | |
| ## Console cursor blink | |
| cursor_blink = Partial |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment