aboutsummaryrefslogtreecommitdiffstats
path: root/config/nvim/init.vim.txt
blob: 2388fe28767b0563c760873ab47c1595a6af92b7 (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
37
38
39
40
41
42
43
44
45
" Basic Configurations
" FernuDev Github - https://github.com/Fernu292

set number
set mouse=a
syntax enable
set showcmd
set encoding=utf-8
set showmatch
set relativenumber

set expandtab
set tabstop=4
set shiftwidth=0
set softtabstop=0
set autoindent
set smarttab

call plug#begin()
	Plug 'nvim-lualine/lualine.nvim'
	Plug 'nvim-tree/nvim-web-devicons'
	Plug 'navarasu/onedark.nvim'
	Plug 'catppuccin/nvim', { 'as': 'catppuccin' }
call plug#end()

" Calling the Lualine pluggin

colorscheme onedark 

lua << END
require('lualine').setup {
	options = {
		icons_enabled = true,
		theme = 'material'
	}
}

require('onedark').setup {
	style = "dark",
	transparent = true,
}

require('onedark').load()

END
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage