Add vim configure

This commit is contained in:
2021-01-24 11:16:43 +09:00
parent 6b8a604fd7
commit f55c07b458
4 changed files with 138 additions and 10 deletions

124
.vimrc Normal file
View File

@@ -0,0 +1,124 @@
call plug#begin('~/.vim/plugged')
" Prettier
Plug 'prettier/vim-prettier', {
\ 'do': 'yarn install',
\ 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'markdown', 'vue', 'yaml', 'html'] }
" 아이콘 폰트 사용
Plug 'ryanoasis/vim-devicons'
" NERDTree
" NERDTree git
Plug 'preservim/nerdtree'
" NERDTree icon color
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
" Restore Session
Plug 'tpope/vim-obsession'
" fuzzy finder
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
" Airline
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" 컬러 테마
Plug 'tomasiser/vim-code-dark'
Plug 'NLKNguyen/papercolor-theme'
Plug 'scheakur/vim-scheakur'
Plug 'junegunn/seoul256.vim'
" Language Pack
Plug 'sheerun/vim-polyglot'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
" indent 표시
Plug 'Yggdroot/indentLine'
" 코딩시간 측정
Plug 'wakatime/vim-wakatime'
" git status
Plug 'airblade/vim-gitgutter'
Plug 'vim-scripts/SyntaxComplete'
call plug#end()
set smartindent
set backspace=2
set cindent
set tabstop=2
set shiftwidth=2
set expandtab
set nu
set ruler
set title
set hlsearch
set cursorline
syntax on
set clipboard+=unnamedplus
set laststatus=2
set shell=/bin/bash
set fillchars+=vert:┃
set mouse=a
set encoding=UTF-8
" 단축키 설정
nmap <C-p> :FZF<cr>
nmap <Tab> :NERDTreeToggle<cr>
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
inoremap <expr><s-tab> pumvisible() ? "\<c-p>" : "\<s-tab>"
" theme config
let g:PaperColor_Theme_Options = {
\ 'theme': {
\ 'default': {
\ 'transparent_background': 1
\ }
\ }
\ }
set background=light
colorscheme seoul256-light
hi Normal guibg=NONE ctermbg=NONE
hi EndOfBuffer guibg=NONE ctermbg=NONE
" devicons
let g:WebDevIconsUnicodeDecorateFolderNodes = 1
let g:DevIconsEnableFoldersOpenClose = 1
" airline
let g:airline_theme = 'base16'
let g:airline_powerline_fonts=0
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#tab_nr_type = 1 " tab number
let g:airline#extensions#tabline#show_tab_nr = 1
let g:airline#extensions#tabline#formatter = 'default'
let g:airline#extensions#tabline#buffer_nr_show = 1
let g:airline#extensions#tabline#fnametruncate = 16
let g:airline#extensions#tabline#fnamecollapse = 2
" cpp syntax highlight
let g:cpp_class_scope_highlight = 1
let g:cpp_member_variable_highlight = 1
let g:cpp_class_decl_highlight = 1
let g:cpp_concepts_highlight = 1
let g:cpp_experimental_template_highlight = 1
" prettier
let g:prettier#autoformat = 1
let g:prettier#autoformat_require_pragma = 0
" nerdtree
let NERDTreeShowHidden=1

View File

@@ -4,3 +4,5 @@
name = Jisu Kim
[commit]
gpgsign = true
[core]
editor = vim

View File

@@ -9,8 +9,9 @@ const common: DotOption = {
".tmux.conf": "tmux.conf",
".tmux/themes": "tmux/themes",
".zshrc": "zshrc",
".local/bin/ufetch": "linux/bin/ufetch"
}
".local/bin/ufetch": "linux/bin/ufetch",
".vimrc": "vimrc",
},
};
const darwin: DotOption = {
@@ -18,8 +19,8 @@ const darwin: DotOption = {
link: {
...common.link,
".config/alacritty": "darwin/alacritty",
".local/bin/ufetch": "darwin/bin/ufetch"
}
".local/bin/ufetch": "darwin/bin/ufetch",
},
};
const linux: DotOption = {
@@ -38,7 +39,7 @@ const linux: DotOption = {
kcm-fcitx5 numix-gtk-theme-git numix-circle-icon-theme-git
telegram-desktop nautilus eog smplayer smplayer-skins transgui-qt
qt5-styleplugins xdg-user-dirs slim network-manager-applet bc
glava conky jq xdo ttf-roboto xorg-xsetroot xorg-xinput noto-fonts-cjk`
glava conky jq xdo ttf-roboto xorg-xsetroot xorg-xinput noto-fonts-cjk`,
],
link: {
...common.link,
@@ -60,8 +61,8 @@ const linux: DotOption = {
".bash_profile": "linux/bash_profile",
".pam_environment": "linux/pam_environment",
".Xmodmap": "linux/Xmodmap",
".Xresources": "linux/Xresources"
}
".Xresources": "linux/Xresources",
},
};
const linuxHiDPI: DotOption = {
@@ -75,8 +76,8 @@ const linuxHiDPI: DotOption = {
".pam_environment": "linux-hidpi/pam_environment",
".Xresources": "linux-hidpi/Xresources",
".config/glava": "linux-hidpi/glava",
".conkyrc": "linux-hidpi/conkyrc"
}
".conkyrc": "linux-hidpi/conkyrc",
},
};
try {

3
zshrc
View File

@@ -3,6 +3,7 @@ export PATH=$HOME/.local/bin:/usr/local/bin:$PATH
export DENO_INSTALL="/home/vbalien/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
export PATH="$PATH:$HOME/go/bin"
export PATH="$HOME/.yarn/bin:$PATH"
# Path to your oh-my-zsh installation.
@@ -103,9 +104,9 @@ source $ZSH/oh-my-zsh.sh
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
alias vi=vim
export GPG_TTY=$(tty)
alias vim=nvim
if [[ `uname` != "Darwin" ]]; then
alias open=xdg-open
fi