Skip to content

Instantly share code, notes, and snippets.

View gr8arty's full-sized avatar

Chuprin Artyom gr8arty

View GitHub Profile
@extratone
extratone / tgkeys.md
Created September 27, 2021 18:46
Telegram Desktop Keyboard Shortcuts
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'
@safijari
safijari / orgmode_spacemacs.org
Last active May 30, 2023 16:11
Org mode spacemacs tutorial file

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.

Org tutorial

Note: a great reference can be had here http://spacemacs.org/layers/+emacs/org/README.html

Outlines/headers

Show that each outline has it’s associated “text” under it

@pcorey
pcorey / .spacemacs
Created September 10, 2018 14:32
My .spacemacs config file
;; -*- 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
@rnwolf
rnwolf / spacemacs-keybindings.md
Last active September 16, 2025 05:21 — forked from kiambogo/spacemacs-keybindings
spacemacs keybindings that i need to learn
@neretin-trike
neretin-trike / pug.md
Last active November 20, 2025 19:36
Туториал по HTML препроцессору Pug (Jade)
@mendeza
mendeza / .vimrc
Last active September 14, 2024 06:37
Simple .vimrc or init.vim for nvim (neovim)
" (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

Useful Spacemacs commands

  • SPC q q - quit
  • SPC w / - split window vertically
  • SPC w - - split window horizontally
  • SPC 1 - switch to window 1
  • SPC 2 - switch to window 2
  • SPC w c - delete current window
@vektornsk
vektornsk / 1-list-of-plugin.js
Last active June 30, 2019 17:57
Сборка для gulp + плагины
'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"), // фильтрует
@tuxfight3r
tuxfight3r / vim-shortcuts.md
Last active November 3, 2025 20:23
VIM SHORTCUTS

VIM KEYBOARD SHORTCUTS

MOVEMENT

h        -   Move left
j        -   Move down
k        -   Move up
l        -   Move right
$        -   Move to end of line
0        -   Move to beginning of line (including whitespace)