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
#include QMK_KEYBOARD_H | |
enum layer_number { | |
_QWERTY = 0, | |
_LOWER, | |
_RAISE, | |
_ADJUST, | |
}; | |
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
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
{"keyboard": "lily58/rev1", "keymap": "1ncend1ary-2", "layout": "LAYOUT", "layers": [["KC_LCTL", "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", "KC_6", "KC_7", "KC_8", "KC_9", "KC_0", "KC_RCTL", "KC_TAB", "KC_Q", "KC_W", "KC_E", "KC_R", "KC_T", "KC_Y", "KC_U", "KC_I", "KC_O", "KC_P", "KC_MINS", "KC_ESC", "KC_A", "KC_S", "KC_D", "KC_F", "KC_G", "KC_H", "KC_J", "KC_K", "KC_L", "KC_SCLN", "KC_QUOT", "KC_LSFT", "KC_Z", "KC_X", "KC_C", "KC_V", "KC_B", "KC_LBRC", "KC_RBRC", "KC_N", "KC_M", "KC_COMM", "KC_DOT", "KC_SLSH", "KC_RSFT", "KC_LALT", "KC_LGUI", "MO(_LOWER)", "KC_SPC", "KC_ENT", "MO(_RAISE)", "KC_BSPC", "KC_CAPS"], ["KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_F1", "KC_F2", "KC_F3", "KC_F4", "KC_F5", "KC_F6", "KC_F7", "KC_F8", "KC_F9", "KC_F10", "KC_F11", "KC_F12", "KC_GRV", "KC_EXLM", "KC_AT", "KC_HASH", "KC_DLR", "KC_PERC", "KC_CIRC", "KC_AMPR", "KC_ASTR", "KC_LPRN", "KC_RPRN", "KC_TILD", "KC_TRNS", "KC_LCBR", "KC_BSLS", " |
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
#============================================================================= | |
# basic.toml --- basic configuration example for SpaceVim | |
# Copyright (c) 2016-2020 Wang Shidong & Contributors | |
# Author: Wang Shidong < wsdjeg at 163.com > | |
# URL: https://spacevim.org | |
# License: GPLv3 | |
#============================================================================= | |
# All SpaceVim option below [option] section | |
[options] |
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
function! myspacevim#before() abort | |
" vim-plug installation | |
" Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app && yarn install' } | |
call SpaceVim#custom#SPCGroupName(['g'], '+Custom') | |
autocmd FileType markdown nmap <buffer><silent> <leader>l :call mdip#MarkdownClipboardImage()<CR> | |
autocmd FileType html nmap <buffer><silent> <leader>l :call mdip#MarkdownClipboardImage()<CR> | |
call SpaceVim#custom#SPC('nnoremap', ['g', 'l'], ':call mdip#MarkdownClipboardImage()<CR>', 'Paste image to markdown file', 1) | |
map <silent> <leader>h ys$}. |
OlderNewer