blob: 45b705b5480de6bb1b8a4a402aae8a489f8d1932 (
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
29
30
31
32
33
34
35
36
|
call plug#begin()
Plug 'itchyny/lightline.vim'
Plug 'folke/tokyonight.nvim', { 'branch': 'main' }
call plug#end()
syntax on
filetype plugin indent on
colorscheme tokyonight-moon
let g:lightline = {'colorscheme': 'tokyonight'}
set mouse=v
set mouse=a
set clipboard=unnamedplus
set autoindent
set hlsearch
set tabstop=4
set shiftwidth=0
set expandtab
set number
set cc=80
set encoding=utf-8
set nofoldenable
set laststatus=2
set noshowmode
set modeline
set mouse=a
set ttyfast
set colorcolumn=0
hi Normal guibg=NONE ctermbg=NONE
hi LineNr term=bold cterm=bold ctermfg=2 guifg=White guibg=NONE
|