v0.0.1
This commit is contained in:
3
layers/base/init.vim
Normal file
3
layers/base/init.vim
Normal file
@ -0,0 +1,3 @@
|
||||
vim9script
|
||||
|
||||
TuiLayer base.options
|
52
layers/base/options.vim
Normal file
52
layers/base/options.vim
Normal file
@ -0,0 +1,52 @@
|
||||
vim9script
|
||||
|
||||
# ******************** line number ********************
|
||||
set number
|
||||
set relativenumber
|
||||
# set numberwidth=2
|
||||
|
||||
# ******************** tab size ********************
|
||||
set tabstop=4
|
||||
set softtabstop=4
|
||||
set shiftwidth=4
|
||||
set expandtab
|
||||
|
||||
# ******************** encoding ********************
|
||||
set encoding=utf-8
|
||||
set termencoding=utf-8
|
||||
set fileencodings="utf-8,gb2312,gbk,ucs-bom,cp936,latin-1"
|
||||
|
||||
## ******************** blank chars ********************
|
||||
set list
|
||||
set listchars=space:·
|
||||
|
||||
## ******************** backup ********************
|
||||
set nobackup
|
||||
set nowritebackup
|
||||
set noswapfile
|
||||
|
||||
## ******************** search ********************
|
||||
set hlsearch
|
||||
set ignorecase
|
||||
set noincsearch
|
||||
|
||||
## ******************** filetype ********************
|
||||
filetype on
|
||||
filetype plugin on
|
||||
filetype indent on
|
||||
|
||||
# ******************** colorscheme ********************
|
||||
set t_Co=256
|
||||
set termguicolors
|
||||
syntax on
|
||||
colorscheme molokai
|
||||
set cursorline
|
||||
|
||||
## ******************** others ********************
|
||||
set nocompatible
|
||||
set nowrap
|
||||
set wildmenu
|
||||
set clipboard+=unnamed
|
||||
set conceallevel=0
|
||||
set mouse=a
|
||||
|
5
layers/init.vim
Normal file
5
layers/init.vim
Normal file
@ -0,0 +1,5 @@
|
||||
vim9script
|
||||
|
||||
TuiLayer base
|
||||
|
||||
# TuiLayer plug
|
Reference in New Issue
Block a user