Clean
This commit is contained in:
18
vimrc
18
vimrc
@@ -25,10 +25,6 @@ Plug 'vim-airline/vim-airline'
|
|||||||
Plug 'vim-airline/vim-airline-themes'
|
Plug 'vim-airline/vim-airline-themes'
|
||||||
|
|
||||||
" 컬러 테마
|
" 컬러 테마
|
||||||
Plug 'tomasiser/vim-code-dark'
|
|
||||||
Plug 'NLKNguyen/papercolor-theme'
|
|
||||||
Plug 'scheakur/vim-scheakur'
|
|
||||||
Plug 'junegunn/seoul256.vim'
|
|
||||||
Plug 'dracula/vim', { 'as': 'dracula' }
|
Plug 'dracula/vim', { 'as': 'dracula' }
|
||||||
|
|
||||||
" Language Pack
|
" Language Pack
|
||||||
@@ -45,8 +41,6 @@ Plug 'wakatime/vim-wakatime'
|
|||||||
" git status
|
" git status
|
||||||
Plug 'airblade/vim-gitgutter'
|
Plug 'airblade/vim-gitgutter'
|
||||||
|
|
||||||
Plug 'vim-scripts/SyntaxComplete'
|
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
set smartindent
|
set smartindent
|
||||||
@@ -80,16 +74,12 @@ nmap <Tab> :NERDTreeToggle<cr>
|
|||||||
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
|
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
|
||||||
inoremap <expr><s-tab> pumvisible() ? "\<c-p>" : "\<s-tab>"
|
inoremap <expr><s-tab> pumvisible() ? "\<c-p>" : "\<s-tab>"
|
||||||
|
|
||||||
|
" extension
|
||||||
|
autocmd BufNewFile,BufRead *.tsx,*.jsx set filetype=typescriptreact
|
||||||
|
|
||||||
" theme config
|
" theme config
|
||||||
let g:PaperColor_Theme_Options = {
|
let g:dracula_colorterm = 0
|
||||||
\ 'theme': {
|
let g:dracula_italic = 0
|
||||||
\ 'default': {
|
|
||||||
\ 'transparent_background': 1
|
|
||||||
\ }
|
|
||||||
\ }
|
|
||||||
\ }
|
|
||||||
|
|
||||||
colorscheme dracula
|
colorscheme dracula
|
||||||
|
|
||||||
hi Normal guibg=NONE ctermbg=NONE
|
hi Normal guibg=NONE ctermbg=NONE
|
||||||
|
|||||||
2
zshrc
2
zshrc
@@ -75,7 +75,7 @@ ZSH_CUSTOM=$HOME/.config/omz
|
|||||||
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
|
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
|
||||||
# Example format: plugins=(rails git textmate ruby lighthouse)
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||||
# Add wisely, as too many plugins slow down shell startup.
|
# Add wisely, as too many plugins slow down shell startup.
|
||||||
plugins=(git deno)
|
plugins=(git deno git-flow)
|
||||||
|
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user