📝 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.relativenumber = true
vim.opt.softtabstop = 0
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
@ -57,6 +56,9 @@ vim.opt.list = true
-- git-blame disabled by default
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)
-- vim.cmd([[autocmd InsertEnter * norm zz]])

View file

@ -115,7 +115,7 @@ alias {pdfg,greppdf}="pdfgrep"
alias tree="tree -ad -L 3 --prune -C"
alias {nv,nvi}="nvim"
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-f="cd ~/Documents/Code/siimee/frontend/ && ls"
alias siimee-b="cd ~/Documents/Code/siimee/backend/ && ls"