Created
June 5, 2021 12:49
-
-
Save awesomephant/1c811bf3a30e634b2adb2a80f2d4e74f to your computer and use it in GitHub Desktop.
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
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