neovim configuration
This commit is contained in:
commit
eea0b4645c
1 changed files with 23 additions and 0 deletions
23
init.vim
Normal file
23
init.vim
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
call plug#begin()
|
||||||
|
|
||||||
|
Plug 'itchyny/lightline.vim'
|
||||||
|
Plug 'catppuccin/nvim', { 'as': 'catppuccin' }
|
||||||
|
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
|
colorscheme catppuccin-mocha " catppuccin-latte, catppuccin-frappe, catppuccin-macchiato, catppuccin-mocha
|
||||||
|
|
||||||
|
set backspace=indent,eol,start
|
||||||
|
set laststatus=2
|
||||||
|
set tabstop=4
|
||||||
|
set softtabstop=4
|
||||||
|
set number
|
||||||
|
set shiftwidth=4
|
||||||
|
set nocompatible
|
||||||
|
set expandtab
|
||||||
|
set autoindent
|
||||||
|
set cursorline
|
||||||
|
set ttyfast
|
||||||
|
set hlsearch
|
||||||
|
set cc=80
|
||||||
|
filetype plugin on
|
Loading…
Reference in a new issue