| Action | Command |
|---|---|
| Move to next chat | Ctrl + Tab |
| Move to next chat | Ctrl + PageDown |
| Move to next chat | Alt + Arrow Down |
| Move to previous chat | Ctrl + Shift + Tab |
| Move to previous chat | Ctrl + PageUp |
| Move to previous chat | Alt + Arrow Up |
| Go to Previous Folder | Ctrl + Shift + Arrow Up |
| Go to Next Folder | Ctrl + Shift + Arrow Down |
| " Specify a directory for plugins | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
| Plug 'scrooloose/nerdtree' | |
| "Plug 'tsony-tsonev/nerdtree-git-plugin' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'tiagofumo/vim-nerdtree-syntax-highlight' | |
| Plug 'ryanoasis/vim-devicons' | |
| Plug 'airblade/vim-gitgutter' |
I hope the tutorial has been useful to you. If it was kindly leave a like and a comment, and consider subscribing and turning on subscription notifications. I intend to make more videos like this on the topics mentioned before as well as on other spacemacs topic like magit (git plugin), large scale refactoring, and a number of other things. Thank you so much for watching.
Note: a great reference can be had here http://spacemacs.org/layers/+emacs/org/README.html
Show that each outline has it’s associated “text” under it
| ;; -*- mode: emacs-lisp -*- | |
| ;; This file is loaded by Spacemacs at startup. | |
| ;; It must be stored in your home directory. | |
| (defun dotspacemacs/layers () | |
| "Configuration Layers declaration. | |
| You should not put any user code in this function besides modifying the variable | |
| values." | |
| (setq-default | |
| ;; Base distribution to use. This is a layer contained in the directory |
Ref: https://gist.github.com/rnwolf/e09ae9ad6d3ac759767d129d52cab1f1
| Key Binding | Description |
|---|---|
| SPC | < space > |
| RET | < return > |
| C | < ctrl > |
| M | < alt >, M stands for Meta |
Pug - это препроцессор HTML и шаблонизатор, который был написан на JavaScript для Node.js.
| " (N)Vim Configuration File | |
| " vim : place in $HOME/.vimrc | |
| " nvim : place in $HOME/.config/nvim/init.vim | |
| " $ ln -s $HOME/.config/nvim/init.vim $HOME/.vimrc | |
| " General settings | |
| " https://learnvimscriptthehardway.stevelosh.com/ | |
| " --------------------------------------------------------------------------- | |
| " drop vi support - kept for vim compatibility but not needed for nvim | |
| " Probably not needed with Vim 8+ | |
| "set nocompatible |
This is unmaintained, please visit Ben-PH/spacemacs-cheatsheet
SPC q q- quitSPC w /- split window verticallySPC w- - split window horizontallySPC 1- switch to window 1SPC 2- switch to window 2SPC w c- delete current window
| 'use strict'; | |
| var | |
| gulp = require("gulp"), | |
| wiredep = require("wiredep").stream, // авто прописывет файлы из bower | |
| useref = require("gulp-useref"), // перемещает index.html | |
| uglify = require("gulp-uglify"), // минимизирует js | |
| clean = require("gulp-clean"), // удаление файлов, папок | |
| gulpif = require("gulp-if"), // объединяет файлы в поток | |
| filter = require("gulp-filter"), // фильтрует |