-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.vim
More file actions
55 lines (46 loc) · 957 Bytes
/
init.vim
File metadata and controls
55 lines (46 loc) · 957 Bytes
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
set nu rnu
set title
"set autochdir
set background=dark
set signcolumn=yes
set ttimeoutlen=0
set wildmenu wildmode=longest:full,full
set completeopt=noinsert,menuone,noselect
set inccommand=split
set clipboard+=unnamedplus
set backspace=indent,eol,start
"set list
set listchars=tab:»-,trail:·,extends:»,precedes:«
set cursorline
set hidden
set mouse=a
set splitbelow splitright
set nobackup
set noswapfile
set nobomb
set autoindent
set smartindent
set expandtab
set smarttab
set tabstop=2
set softtabstop=2
set shiftwidth=2
filetype plugin indent on
syntax on
""" For neovide
if exists("g:neovide")
set guifont=CaskaydiaCove\ NF\ Mono:h10:i:#e-subpixelantialias:#h-none
let g:neovide_cursor_animation_length = 0
endif
""" Setup color
set termguicolors
""" Italics
let &t_ZH="\e[3m"
let &t_ZR="\e[23m"
""" Load env
runtime env.local.vim
""" Load Packer
lua require('config.lazy')
lua require('keymaps')
""" EasyMotion
runtime easymotion.vim