Update atom config

master
Hektor Misplon 2021-12-31 15:47:04 +01:00
parent 90fce747c0
commit 83a9e15c9c
3 changed files with 84 additions and 6 deletions

View File

@ -1,6 +1,33 @@
"*": "*":
"atom-package-deps":
ignored: [
"linter-ui-default"
]
core: core:
autoHideMenuBar: true autoHideMenuBar: true
disabledPackages: [
"linter-glslify"
"github"
"spell-check"
"background-tips"
"wrap-guide"
"whitespace"
"welcome"
"markdown-preview"
"tabs"
"git-diff"
"go-to-line"
"image-view"
"language-coffee-script"
"language-git"
"autocomplete-glsl"
"autocomplete-atom-api"
"autocomplete-css"
"autocomplete-html"
"autocomplete-plus"
"autocomplete-snippets"
"notifications"
]
telemetryConsent: "no" telemetryConsent: "no"
themes: [ themes: [
"one-dark-ui" "one-dark-ui"
@ -12,7 +39,14 @@
scrollPastEnd: true scrollPastEnd: true
"exception-reporting": "exception-reporting":
userId: "6f9fc289-7b3c-4490-937e-5e58e9765c5e" userId: "6f9fc289-7b3c-4490-937e-5e58e9765c5e"
"linter-ui-default":
showPanel: true
"prettier-atom":
formatOnSaveOptions:
enabled: true
"status-bar": "status-bar":
isVisible: false isVisible: false
tabs:
alwaysShowTabBar: false
welcome: welcome:
showOnStartup: false showOnStartup: false

View File

@ -1,11 +1,23 @@
// The ui-variables file is provided by base themes provided by Atom.
//
// See https://github.com/atom/atom-dark-ui/blob/master/styles/ui-variables.less
// for a full listing of what's available.
@import "ui-variables"; @import "ui-variables";
&.hydra-flash { &.hydra-flash {
// color: @text-color-selected;
// background-color: @background-color-selected;
// color: #000;
background: rgba(255, 255, 255, 0.5) !important; background: rgba(255, 255, 255, 0.5) !important;
//background: #0f0 !important;
} }
&.evalFlash { &.evalFlash {
// color: @text-color-selected;
// background-color: @background-color-selected;
// color: #000;
background: rgba(255, 255, 255, 0.8) !important; background: rgba(255, 255, 255, 0.8) !important;
//background: #0f0 !important;
} }
.hydra, .hydra,
@ -16,7 +28,7 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
z-index: -1; z-index: -1;
background: #000; background: black;
} }
body.hydra-enabled { body.hydra-enabled {
@ -29,18 +41,19 @@ body.hydra-enabled {
:not(.cursor):not(autocomplete-suggestion-list):not(atom-overlay):not(span):not(.region), :not(.cursor):not(autocomplete-suggestion-list):not(atom-overlay):not(span):not(.region),
atom-workspace *:before, atom-workspace *:before,
atom-workspace *:after { atom-workspace *:after {
background: transparent; background: transparent; /*!important;*/
border: none !important; border: none !important;
text-shadow: 0 1px 1px black; text-shadow: 0 1px 1px black;
box-shadow: none !important; box-shadow: none !important;
} }
.line > span { .line > span {
background: rgba(0, 0, 0, 1); background: rgba(0, 0, 0, 0.6);
} }
.cursor { .cursor {
border-color: solid #fff !important; width: 0 !important;
box-shadow: 0 0 3px #0ff !important;
border-left: 4px solid #0ff !important;
} }
autocomplete-suggestion-list, autocomplete-suggestion-list,
atom-overlay { atom-overlay {
@ -54,15 +67,29 @@ body.hydra-enabled {
background: #0005 !important; background: #0005 !important;
border-left: 8px #8888 solid !important; border-left: 8px #8888 solid !important;
} }
/* transparent background for file tabs */
li.texteditor.tab{ li.texteditor.tab{
background: rgba(0, 0, 0, 0.0)!important; background: rgba(0, 0, 0, 0.0)!important;
} }
} }
/*.evalFlash > span {
background-color: rgba(255, 255, 255, 0.9);
}
//styles from tidal-atom
atom-text-editor.editor .line { atom-text-editor.editor .line {
transition: background-color .8s ease-out; transition: background-color .8s ease-out;
-webkit-transition: background-color .8s ease-out; -webkit-transition: background-color .8s ease-out;
background-color: rgba(0, 0, 0, 0.6); background-color: rgba(0, 0, 0, 0.6);
// &.line-green {
// background-color: @green-color;
// }
//
// &.line-blue {
// background-color: @blue-color;
// }
&.line-error { &.line-error {
background-color: fadeout(@background-color-error, 95%); background-color: fadeout(@background-color-error, 95%);
@ -73,6 +100,8 @@ atom-text-editor.editor .line {
background-color: @background-color-highlight; background-color: @background-color-highlight;
} }
&.eval-success { &.eval-success {
color: @text-color-success; color: @text-color-success;
background-color: fadeout(@background-color-success, 50%); background-color: fadeout(@background-color-success, 50%);
@ -83,9 +112,22 @@ atom-text-editor.editor .line {
color: @text-color-error; color: @text-color-error;
background-color: @background-color-error; background-color: @background-color-error;
} }
} }*/
.elegante { .elegante {
background-color: #f00; background-color: #f00;
font-family: fantasy; font-family: fantasy;
} }
/*
atom-panel div.tidalcycles.console {
height: 100px;
padding: 3px 10px;
font-size: 14px;
overflow: scroll;
font-family: Consolas, monospace;
.error{
color: @text-color-error;
}
}
*/

View File

@ -1,6 +1,8 @@
@import "syntax-variables"; @import "syntax-variables";
@import "ui-variables"; @import "ui-variables";
// Cursor style
// =========================
.cursor-base () { .cursor-base () {
border: none; border: none;
background: none; background: none;