📝 Updated nvim to not hide quotes on json

This commit is contained in:
z3rOR0ne 2023-02-04 20:56:25 -08:00
parent f1ffd57996
commit 53ac2fca71
2 changed files with 5 additions and 3 deletions

View file

@ -3,7 +3,6 @@ vim.opt.guicursor = ""
-- --
vim.opt.nu = true vim.opt.nu = true
vim.opt.relativenumber = true vim.opt.relativenumber = true
vim.opt.softtabstop = 0 vim.opt.softtabstop = 0
vim.opt.shiftwidth = 4 vim.opt.shiftwidth = 4
vim.opt.expandtab = true vim.opt.expandtab = true
@ -57,6 +56,9 @@ vim.opt.list = true
-- git-blame disabled by default -- git-blame disabled by default
vim.g.gitblame_enabled = 0 vim.g.gitblame_enabled = 0
-- return quotation marks to json files
vim.cmd([[autocmd Filetype json let g:indentLine_setConceal = 0]])
-- vertically center document when entering Insert mode (breaks shift+A) -- vertically center document when entering Insert mode (breaks shift+A)
-- vim.cmd([[autocmd InsertEnter * norm zz]]) -- vim.cmd([[autocmd InsertEnter * norm zz]])
@ -67,7 +69,7 @@ vim.cmd([[set clipboard+=unnamedplus]])
vim.cmd([[set wrap linebreak textwidth=80]]) vim.cmd([[set wrap linebreak textwidth=80]])
-- max tab characters -- max tab characters
vim.cmd([[let g:mintabline_tab_max_chars = 10 ]]) vim.cmd([[let g:mintabline_tab_max_chars=10]])
-- Search pattern across repository files using fzf -- Search pattern across repository files using fzf
vim.cmd([[ vim.cmd([[

View file

@ -115,7 +115,7 @@ alias {pdfg,greppdf}="pdfgrep"
alias tree="tree -ad -L 3 --prune -C" alias tree="tree -ad -L 3 --prune -C"
alias {nv,nvi}="nvim" alias {nv,nvi}="nvim"
alias {cproj,mproj,myproj}="cd '$cproj' && ls" alias {cproj,mproj,myproj}="cd '$cproj' && ls"
alias leafbytes="cd ~/Documents/Code/leafbytes/ && ls" alias leafbytes="cd ~/Documents/Code/leafbytes_vue/ && ls"
alias siimee="cd ~/Documents/Code/siimee/ && ls" alias siimee="cd ~/Documents/Code/siimee/ && ls"
alias siimee-f="cd ~/Documents/Code/siimee/frontend/ && ls" alias siimee-f="cd ~/Documents/Code/siimee/frontend/ && ls"
alias siimee-b="cd ~/Documents/Code/siimee/backend/ && ls" alias siimee-b="cd ~/Documents/Code/siimee/backend/ && ls"