32 lines
644 B
VimL
32 lines
644 B
VimL
set number
|
|
|
|
" Plugins will be downloaded under the specified directory.
|
|
call plug#begin('~/.vim/plugged')
|
|
|
|
" Declare the list of plugins.
|
|
Plug 'tpope/vim-sensible'
|
|
Plug 'mhartington/oceanic-next'
|
|
Plug 'ryanoasis/vim-devicons'
|
|
Plug 'preservim/nerdtree'
|
|
|
|
" List ends here. Plugins become visible to Vim after this call.
|
|
call plug#end()
|
|
|
|
" For Neovim 0.1.3 and 0.1.4
|
|
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
|
|
|
|
" Or if you have Neovim >= 0.1.5
|
|
if (has("termguicolors"))
|
|
set termguicolors
|
|
endif
|
|
|
|
" Theme
|
|
syntax enable
|
|
colorscheme OceanicNext
|
|
|
|
let mapleader = ","
|
|
|
|
nmap <F6> :NERDTreeToggle<CR>
|
|
|
|
let g:python3_host_prog = expand('~/.pyenv/shims/python3.9')
|