forked from NvChad/NvChad
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.lua
102 lines (73 loc) · 2.23 KB
/
init.lua
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
-- load all plugins
require "pluginsList.lua"
require "file-icons.lua"
require "misc-utils.lua"
require "bufferline.lua"
require "statusline.lua"
require("colorizer").setup()
require("neoscroll").setup() -- smooth scroll
-- lsp
require "lspconfig.lua"
require "compe.lua"
local cmd = vim.cmd
local g = vim.g
g.mapleader = " "
g.auto_save = 1
-- colorscheme related stuff
cmd "syntax enable"
cmd "syntax on"
local base16 = require "base16"
base16(base16.themes["onedark"], true)
-- blankline
local indent = 2
g.indentLine_enabled = 1
g.indent_blankline_char = "▏"
cmd "hi IndentBlanklineChar guifg=#2a2e36"
g.indent_blankline_filetype_exclude = {"help", "terminal"}
g.indent_blankline_buftype_exclude = {"terminal"}
g.indent_blankline_show_trailing_blankline_indent = false
g.indent_blankline_show_first_indent_level = false
require("treesitter.lua")
require("mappings.lua")
-- highlights --
cmd "hi LineNr guifg=#42464e guibg=NONE"
cmd "hi Comment guifg=#42464e"
cmd "hi SignColumn guibg=NONE"
cmd "hi VertSplit guibg=NONE guifg=#2a2e36"
cmd "hi EndOfBuffer guifg=#1e222a"
cmd "hi PmenuSel guibg=#98c379"
cmd "hi Pmenu guibg=#282c34"
-- telescope stuff and popupmenu
require "telescope.lua"
cmd "hi TelescopeBorder guifg=#2a2e36"
cmd "hi TelescopePromptBorder guifg=#2a2e36"
cmd "hi TelescopeResultsBorder guifg=#2a2e36"
cmd "hi TelescopePreviewBorder guifg=#525865"
-- nvim tree color for folder name and icon
require "nvimTree.lua"
cmd "hi NvimTreeFolderIcon guifg = #61afef"
cmd "hi NvimTreeFolderName guifg = #61afef"
cmd "hi NvimTreeIndentMarker guifg=#383c44"
cmd "hi Normal guibg=NONE ctermbg=NONE"
-- git signs
require "gitsigns.lua"
cmd "hi DiffAdd guifg=#81A1C1 guibg = none"
cmd "hi DiffChange guifg =#3A3E44 guibg = none"
cmd "hi DiffModified guifg = #81A1C1 guibg = none"
require("nvim-autopairs").setup()
require("lspkind").init(
{
with_text = true,
symbol_map = {
Folder = ""
}
}
)
-- hide line numbers in terminal windows
vim.api.nvim_exec([[
au BufEnter term://* setlocal nonumber
]], false)
-- inactive statuslines as thin splitlines
cmd("highlight! StatusLineNC gui=underline guibg=NONE guifg=#383c44")
cmd "hi clear CursorLine"
cmd "hi cursorlinenr guibg=NONE guifg=#abb2bf"