This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "{}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Define variables | |
| REPO_URL="git@github.com:dnisdv/nvim.git" | |
| CONFIG_DIR="$HOME/.config/nvim" | |
| BACKUP_DIR="$HOME/.config/nvim.back" | |
| # Backup existing nvim configuration, if it exists | |
| if [ -d "$CONFIG_DIR" ]; then | |
| echo "Existing nvim configuration found. Creating a backup..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "v1", | |
| "name": "dnisdv/challenges", | |
| "description": "default collection of programming challenges by me, dnisdv", | |
| "challenges": [ | |
| { | |
| "title": "sum", | |
| "description": "Write a function that takes two numbers and returns the sum of them.", | |
| "languages": ["javascript"], | |
| "metadata": "./sum/_metadata.yml" |