diff --git a/colorschemes/Makefile b/colorschemes/Makefile index a7e60cb..cf3a25b 100644 --- a/colorschemes/Makefile +++ b/colorschemes/Makefile @@ -14,12 +14,12 @@ OUT_FILES := iterm.itermcolors kitty.conf vim.vim setvtrgb.txt zsh.zsh termux.pr all: $(OUT_DIR) $(addprefix $(OUT_DIR)/,$(OUT_FILES)) clean: - rm -rv out + rm -rv $(OUT_DIR) -out: +$(OUT_DIR): mkdir -p $@ -$(OUT_DIR)/%: %.py _theme.py +$(OUT_DIR)/%: %.py _theme.py $(OUT_DIR) python3 ./$< > $@ $(OUT_DIR)/prismjs-theme.css: prismjs-theme-src.css diff --git a/nvim/coc-languages/rust.vim b/nvim/coc-languages/rust.vim index 343950d..dac412a 100644 --- a/nvim/coc-languages/rust.vim +++ b/nvim/coc-languages/rust.vim @@ -2,7 +2,11 @@ let g:coc_filetypes += ['rust'] let g:coc_global_extensions += ['coc-rust-analyzer'] let g:coc_user_config['rust-analyzer'] = { \ 'serverPath': 'rust-analyzer', +\ 'lens': { +\ 'enable': v:false, +\ }, \ 'inlayHints': { +\ 'typeHints': v:false, \ 'chainingHints': v:false, \ }, \ 'checkOnSave': { @@ -10,7 +14,7 @@ let g:coc_user_config['rust-analyzer'] = { \ }, \ 'cargo': { \ 'loadOutDirsFromCheck': v:true, -\ } +\ }, \ } " let g:coc_global_extensions += ['coc-rls']