Update dots

This commit is contained in:
Joey Yakimowich-Payne 2026-02-10 16:26:58 -07:00
commit a7e22cfbef
2 changed files with 40 additions and 6 deletions

View file

@ -229,8 +229,7 @@ command C let @/=""
command CC :%s#_\(\l\)#\u\1#g command CC :%s#_\(\l\)#\u\1#g
command U :%s#\C\(\<\u[a-z0-9]\+\|[a-z0-9]\+\)\(\u\)#\l\1_\l\2#g command U :%s#\C\(\<\u[a-z0-9]\+\|[a-z0-9]\+\)\(\u\)#\l\1_\l\2#g
map <Leader>y "*y " clipboard mappings moved to end of file
map <Leader>p "*p
nmap =j :%!python3 -m json.tool<CR> nmap =j :%!python3 -m json.tool<CR>
@ -326,7 +325,7 @@ inoremap ¬ <Esc>gti
inoremap <M-h> <Esc>gTi inoremap <M-h> <Esc>gTi
inoremap <M-l> <Esc>gti inoremap <M-l> <Esc>gti
set clipboard= set clipboard=unnamedplus
let g:EasyClipShareYanks = 1 let g:EasyClipShareYanks = 1
@ -1070,7 +1069,7 @@ nmap <F1> :CocCommand java.debug.vimspector.start<CR>
" Nim: replace comment above with comment below " Nim: replace comment above with comment below
let @t = '/^proc ?^\_[\n]## V/\_[kbkbkb^\_[\n\€kb]prckboc m/\.} pdd' let @t = '/^proc ?^\_[\n]## V/\_[<EFBFBD>kb<EFBFBD>kb<EFBFBD>kb^\_[\n\<5C>kb]prc<EFBFBD>kboc m/\.} pdd'
let &t_SI = "\e[5 q" let &t_SI = "\e[5 q"
let &t_EI = "\e[2 q" let &t_EI = "\e[2 q"
@ -1078,3 +1077,40 @@ au FileType vue let b:coc_root_patterns = ['.git', '.env', 'package.json', 'tsco
autocmd Filetype typescript setlocal ts=2 sts=2 sw=2 expandtab autocmd Filetype typescript setlocal ts=2 sts=2 sw=2 expandtab
autocmd Filetype vue setlocal ts=2 sts=2 sw=2 expandtab autocmd Filetype vue setlocal ts=2 sts=2 sw=2 expandtab
" init.vim
set termguicolors
set cursorline
function! s:SetTransparent() abort
for g in [
\ 'Normal', 'NormalNC', 'SignColumn', 'EndOfBuffer', 'FoldColumn',
\ 'LineNr', 'MsgArea', 'CursorLine', 'CursorLineNr',
\ 'StatusLine', 'StatusLineNC', 'WinSeparator', 'VertSplit',
\ 'NormalFloat', 'FloatBorder'
\ ]
execute 'hi ' . g . ' ctermbg=NONE guibg=NONE'
endfor
endfunction
augroup TransparentUI
autocmd!
autocmd ColorScheme * call s:SetTransparent()
augroup END
call s:SetTransparent()
set cursorline
set cursorlineopt=line
hi CursorLine guibg=NONE ctermbg=NONE gui=bold cterm=bold
" Bold + undercurl (very subtle if your terminal supports it)
set cursorline
set cursorlineopt=line
hi CursorLine guibg=NONE ctermbg=NONE gui=bold,undercurl cterm=bold guisp=#777777
nmap <leader>y "+y
vmap <leader>y "+y
nmap <leader>p "+p
vmap <leader>p "+p

2
.zshrc
View file

@ -63,5 +63,3 @@ HISTFILE=$HOME/.zsh_history
setopt APPEND_HISTORY INC_APPEND_HISTORY SHARE_HISTORY setopt APPEND_HISTORY INC_APPEND_HISTORY SHARE_HISTORY
export TERM=xterm-256color export TERM=xterm-256color
. "$HOME/.langflow/uv/env"