Neovim update
This commit is contained in:
parent
744865e965
commit
0db71c6f62
|
@ -111,7 +111,7 @@ if (!`!p snip.rv = match.group(1)`) {
|
||||||
$0
|
$0
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet "(\w+) = open" "Automatic open error implementation" rA
|
snippet "(\w+) = open" "Automatic open error implementation" r
|
||||||
/* create descriptor `!p snip.rv = match.group(1)` for file $1 */
|
/* create descriptor `!p snip.rv = match.group(1)` for file $1 */
|
||||||
`!p snip.rv = match.group(1)` = open(${1:"Filename"}, ${2:"MODE"});
|
`!p snip.rv = match.group(1)` = open(${1:"Filename"}, ${2:"MODE"});
|
||||||
if (-1 == `!p snip.rv = match.group(1)`) {
|
if (-1 == `!p snip.rv = match.group(1)`) {
|
||||||
|
|
|
@ -8,7 +8,6 @@ vim.opt.hlsearch = true
|
||||||
vim.opt.encoding = "UTF-8"
|
vim.opt.encoding = "UTF-8"
|
||||||
vim.g.tex_flavor = "latex"
|
vim.g.tex_flavor = "latex"
|
||||||
vim.opt.conceallevel = 2
|
vim.opt.conceallevel = 2
|
||||||
vim.opt.guifont = "DroidSansMono Nerd Font 11"
|
|
||||||
vim.g.mapleader = ","
|
vim.g.mapleader = ","
|
||||||
|
|
||||||
-- set color scheme
|
-- set color scheme
|
||||||
|
|
|
@ -4,7 +4,7 @@ filetype plugin on
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
" colorscheme vim-monokai-tasty
|
" colorscheme vim-monokai-tasty
|
||||||
colorscheme default
|
colorscheme desert
|
||||||
|
|
||||||
" open builtin terminal
|
" open builtin terminal
|
||||||
function OpenTerm()
|
function OpenTerm()
|
||||||
|
|
Loading…
Reference in New Issue