Skip to content

Instantly share code, notes, and snippets.

View datsfilipe's full-sized avatar
🩶
let this grieving soul retire

datsfilipe.xyz datsfilipe

🩶
let this grieving soul retire
View GitHub Profile
@datsfilipe
datsfilipe / vscode-settings.json
Created November 8, 2022 16:22
I do not use Visual Studio Code anymore but there is the config I used and I believe it will be very good for people trying to migrate to neovim or simply trying to lern the neovim like movements
{
"editor.accessibilitySupport": "off",
"editor.cursorSmoothCaretAnimation": false,
"editor.find.addExtraSpaceOnTop": false,
"editor.fontFamily": "JetBrainsMono Nerd Font, JetBrains Mono, Fira Code, monospace",
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss06', 'zero'",
"editor.fontSize": 14,
"editor.glyphMargin": true,
"editor.guides.bracketPairs": "active",
"editor.inlineSuggest.enabled": true,
@datsfilipe
datsfilipe / autosave.lua
Last active August 17, 2022 13:05 — forked from CyberShadow/autosave.lua
It's a fork from a fork. The intent is to don't save the state while playing mp3 audio files.
-- autosave.lua script
-- Fork from: https://gist.github.com/CyberShadow/2f71a97fb85ed42146f6d9f522bc34ef
local options = require 'mp.options'
local o = {
save_period = 60
}
options.read_options(o)
@datsfilipe
datsfilipe / .gitconfig
Last active August 18, 2022 04:58
git config file
## type "nvim ~/.gitconfig" on shell and paste the following
[user]
name = # your username
email = # your e-mail
[alias]
ci = commit
co = checkout
cm = checkout main
cb = checkout -b