Skip to content

Commit

Permalink
Pee on me
Browse files Browse the repository at this point in the history
  • Loading branch information
chee committed Jun 1, 2019
0 parents commit bc91133
Show file tree
Hide file tree
Showing 6 changed files with 162 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
@@ -0,0 +1,10 @@
.DS_Store
.apm/
.git-history/
.node-gyp/
compile-cache/
packages/
projects.cson
snippets.cson
storage/
blob-store/
47 changes: 47 additions & 0 deletions config.cson
@@ -0,0 +1,47 @@
"*":
"atom-ide-ui":
use:
"atom-ide-terminal": "never"
"autocomplete-plus":
confirmCompletion: "tab always, enter when suggestion explicitly selected"
core:
debugLSP: true
packagesWithKeymapsDisabled: [
"vk-terminal"
]
telemetryConsent: "no"
themes: [
"one-light-ui"
"lychee-syntax"
]
titleBar: "custom-inset"
editor:
fontFamily: "fira code"
fontSize: 16
scrollPastEnd: true
showIndentGuide: true
showInvisibles: true
"exception-reporting":
userId: "0a005746-a4e0-430f-a13d-76d421203de7"
"vk-terminal":
ansiColors:
normal:
blue: "#407acd"
cyan: "#22a6cd"
green: "#4ecd82"
magenta: "#cd1669"
red: "#cd4b3c"
yellow: "#becd18"
zBright:
brightBlue: "#3388ff"
brightCyan: "#2ec2ff"
brightGreen: "#69ffa6"
brightMagenta: "#ff408b"
brightRed: "#ff573d"
brightYellow: "#fffe30"
style:
animationSpeed: 100
toggles:
autoClose: true
welcome:
showOnStartup: false
1 change: 1 addition & 0 deletions github.cson
@@ -0,0 +1 @@
# Store non-visible GitHub package state.
11 changes: 11 additions & 0 deletions init.coffee
@@ -0,0 +1,11 @@
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
# console.log "Saved! #{editor.getPath()}"
45 changes: 45 additions & 0 deletions keymap.cson
@@ -0,0 +1,45 @@
# Your keymap
#
# Atom keymaps work similarly to style sheets. Just as style sheets use
# selectors to apply styles to elements, Atom keymaps use selectors to associate
# keystrokes with events in specific contexts. Unlike style sheets however,
# each selector can only be declared once.
#
# You can create a new keybinding in this file by typing "key" and then hitting
# tab.
#
# Here's an example taken from Atom's built-in keymap:
#
# 'atom-text-editor':
# 'enter': 'editor:newline'
#
# 'atom-workspace':
# 'ctrl-shift-p': 'core:move-up'
# 'ctrl-p': 'core:move-down'
#
# You can find more information about keymaps in these guides:
# * http://flight-manual.atom.io/using-atom/sections/basic-customization/#customizing-keybindings
# * http://flight-manual.atom.io/behind-atom/sections/keymaps-in-depth/
#
# If you're having trouble with your keybindings not working, try the
# Keybinding Resolver: `Cmd+.` on macOS and `Ctrl+.` on other platforms. See the
# Debugging Guide for more information:
# * http://flight-manual.atom.io/hacking-atom/sections/debugging/#check-the-keybindings
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# Atom Flight Manual:
# http://flight-manual.atom.io/using-atom/sections/basic-customization/#configuring-with-cson
'.platform-darwin':
'ctrl-g': 'core:cancel'
'cmd-j': 'vk-terminal:toggle'

'atom-text-editor':
'cmd-j': 'vk-terminal:toggle'

'.autocomplete-active':
'ctrl-g': 'autocomplete-plus:cancel'

'.platform-darwin .vk-terminal .terminal':
'cmd-c': 'vk-terminal:copy'
'cmd-v': 'vk-terminal:paste'
48 changes: 48 additions & 0 deletions styles.less
@@ -0,0 +1,48 @@
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/


/*
* Examples
* (To see them, uncomment and save)
*/

// style the background color of the tree view
.tree-view {
// background-color: whitesmoke;
}

// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
// color: white;
// background-color: hsl(180, 24%, 12%);
}

// style UI elements inside atom-text-editor
atom-text-editor .cursor {
// border-color: red;
width: 1px!important;
animation: none!important;
}

.vk-terminal .xterm {
background-color: #ffe9ed;
color: #cc3366;

::selection {
background-color: #fe8;
color: #333;
}

.terminal-cursor {
background-color: #ff2a50;
}
}

0 comments on commit bc91133

Please sign in to comment.