One command launch Launching Neovim configuration is usually done with 2 or 3 steps. I don't want that, I want it to be one step. Use alias In "~/.bashrc": shopt -s globstar nvim_config() { cd ~/.config/nvim nvim *.lua **/*.lua } alias nvim-config='nvim_config'
Install composer dependencies ignoring PHP version When working with PHP projects, you often encounter situations where the required PHP version for a package is slightly different from the one you have installed locally. While it's generally recommended to stick to the specified version, there are cases where minor version differences might not be critical. In such scenarios, you can instruct Composer to ignore the platform requirements and proceed with the installation. Composer install ignoring PHP version Composer provides a handy flag "--ignore-platform-reqs" that allows you to bypass platform checks, including PHP version requirements. This can be particularly useful when you're confident that the minor version difference won't affect the package's functionality in your project. For instance, let's say a package you want to install requires PHP 8.2, but you have PHP 8.3 installed. In this case, you can use the following command to i