dotfiles icon indicating copy to clipboard operation
dotfiles copied to clipboard

:tulip:

Results 18 dotfiles issues
Sort by recently updated
recently updated
newest added

I'm listing them here as they come up just in case I want to switch back. Or perhaps these are already fixed, and I just don't know Fish well enough...

Fish shell

Look at the headers for each diff: https://tekin.co.uk/2020/10/better-git-diff-output-for-ruby-python-elixir-and-more Example `.gitattributes` file: https://gist.github.com/tekin/12500956bd56784728e490d8cef9cb81

You write down what you want to work on next, commit it, and then resume when you come back. https://github.com/gfontenot/dotfiles/blob/main/local/bin/git-wip https://github.com/gfontenot/dotfiles/blob/main/local/bin/git-resume

It's Prettier for Ruby (but is better than prettier-ruby): https://github.com/testdouble/standard

Ruby

The short version: `autoload predict-on && predict-on` That will turn it on always. To bind keys to enable/disable it on demand: https://github.com/joshuaclayton/dotfiles/blob/22b90da2a007f0b24b09d55b4d373eea7428576b/zsh_profile.d/prediction.zsh#L4-L9

Zsh

It needs to run after `vim/after/ftplugin/*.vim` because that can set key bindings: https://github.com/gabebw/dotfiles/blob/0da5afdf96c90b08181c1c79911cfd98fca9457f/vim/after/ftplugin/typescriptreact.vim#L28 Here's an idea that doesn't work: ```vim autocmd BufReadPost call EnsureNothingConflictsWithGrep() ``` It seems like `BufReadPost` doesn't...

Vim

https://github.com/lmeijvogel/vim-yaml-helper >This is a plugin that adds some methods for traversing Yaml files: > >- Getting the full path to the current element ( `:YamlGetFullPath` ), >- Moving to an...

Vim

https://github.com/christoomey/dotfiles/blob/ea34518fa4d6a03d26d09998fa4486815a2305c0/vim/rcplugins/fzf#L13-L19 ```vim nnoremap ga :Files app/ nnoremap gm :Files app/models/ nnoremap gv :Files app/views/ nnoremap gc :Files app/controllers/ nnoremap gy :Files app/assets/stylesheets/ nnoremap gj :Files app/assets/javascripts/ nnoremap gs :Files spec/...

Vim

When copying deeply indented lines to the clipboard, I'd like all space up to the least-indented line to be trimmed (like [`strip_heredoc`](https://apidock.com/rails/String/strip_heredoc) in Rails). The [kana/vim-textobj-line](https://github.com/kana/vim-textobj-line) plugin does this for...

Vim

`J` on steroids: https://github.com/AndrewRadev/splitjoin.vim I literally said "WHAT!" out loud when I saw the GIF in the README. Relevant: https://github.com/thoughtbot/dotfiles/issues/574

Vim