blob: 54839fb118e8920cfffa12040f78e1df45bca1bf (
plain)
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
|
require('plugins')
vim.api.nvim_exec(
[[
syntax on
set number
highlight LineNr ctermfg=darkgrey
highlight NormalFloat ctermbg=NONE
filetype plugin indent on
set tabstop=4
set shiftwidth=4
set expandtab
set signcolumn=number
let g:airline_theme='lucius'
set termguicolors
colorscheme onedark
highlight Normal guibg=NONE
highlight Comment cterm=italic gui=italic
]],
false)
--
require('keybindings')
require('config')
|