When you are in a buffer sometimes you want to do a search and replace but preserve the case. For example if we have the following code. ```rust let some_struct = SomeStruct::new(); ``` if we want to rename this to `another_struct` we can call dev case and it will search and replace preserving the case. We can run the following command. ``` :S some_struct another_struct ``` This will replace the above code so we will be left with ```rust let another_struct = AnotherStruct::new(); ``` This plugin handles calling the cli tool and displaying an in place preview of the change so you can see exactly what you will be changing. It uses the `S` custom command so it feels similar to the built in `s` Substitute command. |
||
|---|---|---|
| data | ||
| img | ||
| lib | ||
| manifests | ||
| modules | ||
| scripts | ||
| site-modules/core | ||
| .gitignore | ||
| .luacheckrc | ||
| .stylua.toml | ||
| bolt-project.yaml | ||
| bolt.yaml | ||
| hiera.yaml | ||
| Puppetfile | ||
| README.md | ||
Dotfiles EST 2015
Personal system configuration
This is my over complicated system configuation managed with Puppet, containing all the usual tools you would expect from a terminal development workflow.
Prerequisites
Before you consider using this configuration, it is recommended that you have your own repository and you just take what you need from this repository and adapt it to your needs. If you really want this configuration then it is recommended that you fork, review the code and remove anything you don't need.
To install the configuration Puppet Bolt and Git are required to on the system so you can run the install scripts.
Install
NOTE: Currently the only OS supported is Ubuntu MATE, up until 2020 Ubuntu Desktop was used at work so that should have good support but really any Debian system should be OK.
# Clone the repo
git clone https://gitlab.com/adeattwood/dotfiles.git ~/.dotfiles
# Apply the configuration
site-modules/core/files/bin/dotfiles apply
