Some fun vim updates

This commit is contained in:
Nicole Tietz-Sokolskaya 2022-05-06 11:07:31 -04:00
parent 1c3d7d38dd
commit dc6909073c
4 changed files with 16 additions and 4 deletions

View file

@ -37,6 +37,8 @@ if [ -x /usr/bin/dircolors ]; then
alias egrep='egrep --color=auto'
fi
alias kssh='kitty +kitten ssh'
# enable programmable completion features
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then

View file

@ -1,3 +1,5 @@
{
"suggest.autoTrigger": "none"
"suggest.autoTrigger": "none",
"signature.target": "echo",
"rust-analyzer.updates.checkOnStartup": false,
}

View file

@ -36,13 +36,14 @@ au CursorHoldI * checktime
" Line numnbmers are cool
set number
set relativenumber
" Always show the signcolumn, otherwise it would shift the text each time
" diagnostics appear/become resolved.
if has("nvim-0.5.0") || has("patch-8.1.1564")
" Recently vim can merge signcolumn and number column into one
set signcolumn=number
else
set signcolumn=yes
else
set signcolumn=number
endif
" Turn off polyglot for some langs so they play nice
@ -57,3 +58,5 @@ source $HOME/.config/nvim/colors.vim
" Manually trigger completions
inoremap <silent><expr> <C-k> coc#refresh()
" Conceal markdown syntax
set conceallevel=2

View file

@ -18,6 +18,12 @@ Plug 'sheerun/vim-polyglot' " Automatic syntax highlighting for many languages
Plug 'ntietz/tla.vim'
Plug 'fatih/vim-go'
" Markdown suppoert
Plug 'godlygeek/tabular'
Plug 'preservim/vim-markdown'
let g:vim_markdown_folding_disabled = 1
let g:vim_markdown_strikethrough = 1
" Use common config to setup tab depth
Plug 'editorconfig/editorconfig-vim'
@ -29,5 +35,4 @@ Plug 'neoclide/coc.nvim', {'branch': 'master'}
" After installation, run this to setup with Rust:
" :CocInstall coc-rust-analyzer
call plug#end()