Skip to content

Instantly share code, notes, and snippets.

View luhyxi's full-sized avatar
🥥
coconut

Luana Ritter luhyxi

🥥
coconut
  • Santa Maria, RS
  • 17:22 (UTC -03:00)
View GitHub Profile
" =============================
" .ideavimrc
" =============================
" --- General Options ---
let mapleader = ","
set scrolloff=5
set incsearch
set ignorecase
set smartcase
@luhyxi
luhyxi / supertab.lua
Created April 8, 2025 23:45
Tab autocomplete for LazyVim
-- So, I just spent 3-4 hours searching for an answer
-- LazyVim no longer uses nvim-cmp, it uses blink and it is WEEEEIIIRRDDD
return {
"saghen/blink.cmp",
version = not vim.g.lazyvim_blink_main and "*",
build = vim.g.lazyvim_blink_main and "cargo build --release",
opts_extend = {
"sources.completion.enabled_providers",
"sources.compat",
@luhyxi
luhyxi / ForTestsWithControllers.cs
Last active March 17, 2024 21:21
Coisas do C#
/*sempre que precisar colocar um DbContext num test, usar :: */
var options = new DbContextOptionsBuilder<AppDbContext>()
.UseInMemoryDatabase(databaseName: "BancoTeste")
.Options;