add nvim
This commit is contained in:
parent
d3b7739447
commit
b241f080d3
26
nvim/.config/nvim/init.vim
Normal file
26
nvim/.config/nvim/init.vim
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
" Plugins
|
||||||
|
call plug#begin('~/.vim/plugged')
|
||||||
|
|
||||||
|
Plug 'dracula/vim', { 'as': 'dracula' }
|
||||||
|
Plug 'itchyny/lightline.vim'
|
||||||
|
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
|
syntax on
|
||||||
|
|
||||||
|
colorscheme dracula
|
||||||
|
|
||||||
|
" Indentation
|
||||||
|
filetype plugin indent on
|
||||||
|
set expandtab
|
||||||
|
set tabstop=4
|
||||||
|
set shiftwidth=4
|
||||||
|
set autoindent
|
||||||
|
set smartindent
|
||||||
|
|
||||||
|
" Lightline
|
||||||
|
set laststatus=2
|
||||||
|
|
||||||
|
" Line numbers
|
||||||
|
set number
|
||||||
|
set relativenumber
|
||||||
Loading…
x
Reference in New Issue
Block a user