Skip to content

Instantly share code, notes, and snippets.

View Gulivertx's full-sized avatar

Cedric Bapst Gulivertx

View GitHub Profile
@Gulivertx
Gulivertx / .ideavimrc
Created November 15, 2025 15:03
.ideavimrc for my phpstorm
"" Base Settings
"" ========================================================
set scrolloff=10
set relativenumber
set showmode
set showcmd
set smartcase
set incsearch
@Gulivertx
Gulivertx / NotesType.php
Created July 16, 2024 16:27
Quill.JS integration with Symfony project
<?php
// File path in Symfony project : src/Form/NotesType.php
namespace App\Form;
use App\Form\Type\QuillTextareaType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;