-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.vim
More file actions
39 lines (29 loc) · 829 Bytes
/
init.vim
File metadata and controls
39 lines (29 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
""" Vim-Plug
call plug#begin()
Plug 'kyazdani42/nvim-web-devicons'
Plug 'romgrk/barbar.nvim'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
" Aesthetics - Colorschemes
Plug 'bluz71/vim-nightfly-colors', { 'as': 'nightfly' }
Plug 'zaki/zazen'
Plug 'yuttie/hydrangea-vim'
" Aesthetics - Others
Plug 'junegunn/rainbow_parentheses.vim'
Plug 'junegunn/limelight.vim'
Plug 'junegunn/vim-journal'
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.4' }
Plug 'scrooloose/nerdtree'
Plug 'echasnovski/mini.nvim'
call plug#end()
""" Main Configurations
filetype plugin indent on
set tabstop=4 softtabstop=4 shiftwidth=4 expandtab smarttab autoindent
set encoding=utf-8
set textwidth=0
set hidden
set number
set title
color nightfly
set termguicolors
lua require('mini.starter').setup()