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
# at .SpaceVim.d/autoload/config.vim | |
func! config#before() abort | |
let g:mapleader=',' | |
set conceallevel=0 | |
endf | |
func! config#after() abort | |
let g:mapleader=',' |
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
spc f f find file, create file | |
spc b b mini buffer(find and open previously opened file) | |
spc j I imenu function list(search function lists) | |
spc f t toggle neotree | |
spc 0 go to neotree window | |
spc 1..9 go to numbered window | |
spc f j dired jump (file manager) | |
spc a r ranger (another file manager) | |
spc f s save file | |
spc q q quit spacemacs editor |
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
;; -*- 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 |