Created
December 29, 2020 20:04
-
-
Save zunamidev/78b1b505d8a4aa1045748b8e04623b0e to your computer and use it in GitHub Desktop.
7 days of VIM (day 1 of 7)
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
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