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
" ============================= | |
" .ideavimrc | |
" ============================= | |
" --- General Options --- | |
let mapleader = "," | |
set scrolloff=5 | |
set incsearch | |
set ignorecase | |
set smartcase |
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
-- 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", |
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
/*sempre que precisar colocar um DbContext num test, usar :: */ | |
var options = new DbContextOptionsBuilder<AppDbContext>() | |
.UseInMemoryDatabase(databaseName: "BancoTeste") | |
.Options; |