Compare commits

...

4 Commits

2 changed files with 44 additions and 3 deletions

View File

@ -211,6 +211,46 @@
"key_code": "right_option" "key_code": "right_option"
} }
] ]
},
{
"from": {
"key_code": "up_arrow"
},
"to": [
{
"pointing_button": "button32"
}
]
},
{
"from": {
"key_code": "down_arrow"
},
"to": [
{
"pointing_button": "button32"
}
]
},
{
"from": {
"key_code": "left_arrow"
},
"to": [
{
"pointing_button": "button32"
}
]
},
{
"from": {
"key_code": "right_arrow"
},
"to": [
{
"pointing_button": "button32"
}
]
} }
] ]
}, },

View File

@ -27,7 +27,6 @@ set hidden
set cmdheight=1 set cmdheight=1
set encoding=utf-8 set encoding=utf-8
set undofile set undofile
set incsearch
set scrolloff=8 set scrolloff=8
set t_BE= set t_BE=
au BufWritePre * let &bex = '@' . strftime("%F.%H:%M") au BufWritePre * let &bex = '@' . strftime("%F.%H:%M")
@ -71,8 +70,10 @@ set ic
" cursor " cursor
set guicursor= set guicursor=
set guicursor+=a:blinkon0
let &t_SI = "\<esc>[6 q" let &t_SI = "\<esc>[6 q"
let &t_EI = "\<esc>[2 q" let &t_SR = "\<esc>[6 q"
let &t_EI = "\<esc>[6 q"
"""""""""""""""""""""""""""""""" """"""""""""""""""""""""""""""""
" Plugins " Plugins
@ -135,7 +136,6 @@ let NERDTreeShowHidden=1
" latex " latex
let g:tex_flavor = "latex" let g:tex_flavor = "latex"
"""""""""""""""""""""""""""""""" """"""""""""""""""""""""""""""""
" Theme " Theme
"""""""""""""""""""""""""""""""" """"""""""""""""""""""""""""""""
@ -190,6 +190,7 @@ set statusline+=\ [%c]
"""""""""""""""""""""""""""""""" """"""""""""""""""""""""""""""""
let mapleader = "\<Space>" let mapleader = "\<Space>"
nmap <leader>a :CocAction<CR> nmap <leader>a :CocAction<CR>
nmap <leader>d :CocDiagnostics<CR>
nmap <leader>2 :w!<cr> nmap <leader>2 :w!<cr>
" Go to definition " Go to definition