37 lines
599 B
VimL
37 lines
599 B
VimL
|
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
|
||
|
|