24 lines
444 B
VimL
24 lines
444 B
VimL
|
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
|