A Pen by Bence Czufor on CodePen.
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
| FROM node:12 | |
| ENV PORT 3000 | |
| # Create app directory | |
| RUN mkdir -p /app | |
| WORKDIR /app | |
| # Copy prisma schema | |
| COPY ./prisma /app/prisma/ |
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
| /*! | |
| Theme Name: Susty | |
| Theme URI: https://sustywp.com | |
| Author: Jack Lenox | |
| Author URI: https://blog.jacklenox.com | |
| Description: A theme for WordPress focused on performance and sustainability. | |
| Version: 1.0.0 | |
| License: GNU General Public License v2 or later | |
| License URI: LICENSE | |
| Text Domain: susty |
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
| if !has('nvim') | |
| syntax on | |
| set nocompatible | |
| filetype plugin on | |
| set hidden " Don't complain about unsaved files when switching buffers. | |
| set autoindent | |
| set autoread | |
| set backspace=indent,eol,start | |
| set belloff=all |
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
| # Wallpapers | |
| exec --no-startup-id feh --bg-scale $HOME/Pictures/wallpapers/02.jpg | |
| # Make the currently focused window a scratchpad | |
| bindsym $mod+Shift+y move scratchpad | |
| # Show the first scratchpad window | |
| bindsym $mod+y scratchpad show | |
| for_window [class="Spotify"] mark "music" , move scratchpad |