This file contains 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
# Base image with PHP and FrankenPHP | |
FROM dunglas/frankenphp:1-php8.3 AS frankenphp | |
RUN apt-get update && apt-get install -y zip libzip-dev libpq-dev libicu-dev wget acl curl | |
RUN docker-php-ext-install sockets zip | |
RUN docker-php-ext-configure zip | |
RUN docker-php-ext-install pgsql pdo_pgsql intl | |
ENV SERVER_NAME my_app |
This file contains 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
include theme.conf | |
font_family JetBrainsMono NF | |
bold_font JetBrainsMono NF Medium | |
italic_font auto | |
bold_italic_font auto | |
font_size 10.5 | |
disable_ligatures never |
This file contains 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
import = [ | |
"~/.config/alacritty/themes/themes/palenight.toml" | |
] | |
[window] | |
decorations = "Full" # Neither borders nor title bar. | |
startup_mode = "Windowed" # Startup mode, regular windows | |
[window.padding] | |
x = 0 |
This file contains 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
### ZSH & ZINIT | |
export ZSH="/home/$USER/.oh-my-zsh" | |
ZSH_THEME="robbyrussell" | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh | |
if [[ ! -f $HOME/.local/share/zinit/zinit.git/zinit.zsh ]]; then | |
print -P "%F{33} %F{220}Installing %F{33}ZDHARMA-CONTINUUM%F{220} Initiative Plugin Manager (%F{33}zdharma-continuum/zinit%F{220})…%f" | |
command mkdir -p "$HOME/.local/share/zinit" && command chmod g-rwX "$HOME/.local/share/zinit" | |
command git clone https://github.com/zdharma-continuum/zinit "$HOME/.local/share/zinit/zinit.git" && \ |
This file contains 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
-- General | |
vim.log.level = "warn" | |
vim.opt["colorcolumn"] = "120" | |
vim.opt["relativenumber"] = true | |
lvim.format_on_save.enabled = true | |
lvim.format_on_save.pattern = { "*.css", "*.erb", "*.html", "*.js", | |
"*.json", "*.jsx", | |
"*.lua", | |
"*.md", | |
"*.mjs", "*.php", "*.py", "*.rb", "*.rs", "*.scss", "*.ts", "*.tsx", "*.twig" } |
This file contains 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
{ | |
"security.workspace.trust.untrustedFiles": "open", | |
"window.titleBarStyle": "native", | |
"workbench.startupEditor": "none", | |
"workbench.editor.labelFormat": "short", | |
"workbench.layoutControl.enabled": false, | |
"workbench.colorTheme": "Catppuccin Frappé", | |
"workbench.iconTheme": "catppuccin-frappe", | |
"window.customTitleBarVisibility": "never", | |
"editor.formatOnSave": true, |