Skip to content

Instantly share code, notes, and snippets.

@awesomephant
Created June 5, 2021 12:49
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 awesomephant/1c811bf3a30e634b2adb2a80f2d4e74f to your computer and use it in GitHub Desktop.
Save awesomephant/1c811bf3a30e634b2adb2a80f2d4e74f to your computer and use it in GitHub Desktop.
set history=500
filetype plugin on
filetype indent on
set autoread
set tabstop=2
set shiftwidth=2
set expandtab
set showmatch
set foldcolumn=1
syntax enable
set hidden
set showtabline=0
set encoding=utf8
call plug#begin(stdpath('data') . '/plugged')
Plug 'vim-airline/vim-airline'
Plug 'ayu-theme/ayu-vim'
Plug 'preservim/nerdtree'
Plug 'vim-ctrlspace/vim-ctrlspace'
Plug 'mattn/emmet-vim'
call plug#end()
set termguicolors
let ayucolor="dark"
colorscheme ayu
set number
set cmdheight=1
set noruler
set nosmd
highlight htmlBold gui=bold guifg=#af0000 ctermfg=124
let g:CtrlSpaceDefaultMappingKey = "<C-space> "
nnoremap <silent><C-p> :CtrlSpace O<CR>
nnoremap <silent><C-'> :NERDTree<CR>
let g:user_emmet_expandabbr_key='<Tab>'
imap <expr> <tab> emmet#expandAbbrIntelligent("\<tab>")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment