Skip to content

Instantly share code, notes, and snippets.

@zunamidev
Created December 29, 2020 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zunamidev/78b1b505d8a4aa1045748b8e04623b0e to your computer and use it in GitHub Desktop.
Save zunamidev/78b1b505d8a4aa1045748b8e04623b0e to your computer and use it in GitHub Desktop.
7 days of VIM (day 1 of 7)
call plug#begin('~/.vim/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'kaicataldo/material.vim', { 'branch': 'main' }
Plug 'prettier/vim-prettier', { 'do': 'yarn install' }
Plug '907th/vim-auto-save'
call plug#end()
inoremap [ []<left>
inoremap { {}<left>
inoremap {<CR> {<CR>}<ESC>O
inoremap {;<CR> {<CR>};<ESC>O
packloadall
set number
set nocompatible
filetype indent plugin on
syntax on
set redrawtime=10000
set shiftwidth=4
set softtabstop=4
set expandtab
let g:material_terminal_italics = 1
let g:material_theme_style = 'ocean'
colorscheme material
let g:auto_save = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment