https://github.com/junegunn/vim-plug
if has('win32')
call plug#begin('~/vimfiles/plugged')
else
call plug#begin('~/.vim/plugged')
endif
Plug 'dense-analysis/ale'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'scrooloose/nerdtree'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-sensible'
Plug 'vim-airline/vim-airline'
call plug#end()
nnoremap <C-n> :NERDTree<CR>
nnoremap <C-p> :FZF<CR>
nmap <silent> <C-k> <Plug>(ale_previous_wrap)
nmap <silent> <C-j> <Plug>(ale_next_wrap)
syntax enable
filetype plugin indent on
language messages C.UTF-8
set encoding=utf-8
set expandtab
set fileencodings=utf-8,cp949
set hlsearch
set langmenu=C.UTF-8
set nobackup
set shiftwidth=4
set softtabstop=4
set tabstop=4
set guifont=D2Coding:h12
set guioptions-=L "remove left-hand scroll bar
set guioptions-=T "remove toolbar
set guioptions-=m "remove menu bar
set guioptions-=r "remove right-hand scroll bar