Last active
October 8, 2017 22:37
-
-
Save dnavas77/6d8152c4224aaa3ef24e4ecfac325c5b to your computer and use it in GitHub Desktop.
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
Vim Keybindings | |
-------------------------- | |
'atom-text-editor.vim-mode:not(.insert-mode)': | |
'ctrl-h': 'pane:show-previous-item' | |
'ctrl-j': 'window:focus-pane-below' | |
'ctrl-k': 'window:focus-pane-above' | |
'ctrl-l': 'pane:show-next-item' | |
'ctrl-w w': 'core:close' | |
'space space': 'core:save' | |
'atom-text-editor.vim-mode.insert-mode': | |
'l k': 'vim-mode:activate-normal-mode' | |
'atom-text-editor.vim-mode.visual-mode': | |
'l k': 'vim-mode:activate-normal-mode' | |
'.platform-darwin': | |
'ctrl-p': 'fuzzy-finder:toggle-file-finder' | |
'ctrl-n': 'tree-view:toggle' | |
'atom-workspace atom-text-editor:not([mini])': | |
'ctrl-/': 'editor:toggle-line-comments' | |
Stylesheet | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
// To style other content in the text editor's shadow DOM, use the ::shadow expression | |
atom-text-editor::shadow pigments-markers::shadow pigments-color-marker.dot, | |
pigments-markers::shadow pigments-color-marker.dot, | |
pigments-color-marker.dot { | |
transform: translate(0, -50%) scale(.7); | |
} | |
Packages | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
color-picker (thomaslindstrom) | |
ex-mode (lloeki) | |
file-icons (file-icons) | |
highlight-selected (richrace) | |
language-haskell (atom-haskell) | |
linter (steelbrain) | |
pigments (abe33) | |
vim-mode (atom) | |
react (orktes) | |
prettier-atom (prettier) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment