summaryrefslogtreecommitdiff
path: root/cfg/nvim/init.vim
blob: 825403b7b6f8f478b46e3111446a78ac04fc221c (plain) (blame)
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
set nocompatible
set hlsearch
set shiftwidth=4
set autoindent
set number
set relativenumber
set cc=80
filetype plugin indent on 
syntax on 
set cursorline
color wildcharm
set autochdir

call plug#begin()

Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope-fzf-native.nvim'
Plug 'nvim-telescope/telescope.nvim', { 'branch': '0.1.x' }

Plug 'NLKNguyen/papercolor-theme'
Plug 'https://gitlab.com/protesilaos/tempus-themes-vim.git'
Plug 'yorickpeterse/vim-paper'
Plug 'morhetz/gruvbox'
Plug 'EdenEast/nightfox.nvim'
Plug 'rebelot/kanagawa.nvim'
Plug 'craftzdog/solarized-osaka.nvim'
Plug 'nyoom-engineering/oxocarbon.nvim'
Plug 'whatyouhide/vim-gotham'
Plug 'miikanissi/modus-themes.nvim'
Plug 'tjdevries/colorbuddy.nvim'
Plug 'zootedb0t/citruszest.nvim'
Plug 'Love-Pengy/lillilac.nvim'
Plug 'kyazdani42/blue-moon'

call plug#end()