Skip to content

Instantly share code, notes, and snippets.

View MrVizious's full-sized avatar
🎮
Coding games is fun!

Javier Riera Chirivella MrVizious

🎮
Coding games is fun!
View GitHub Profile
@MrVizious
MrVizious / DashPlayerCommand.cs
Created June 20, 2025 09:10
A dump with relevant files for a UniState issue
public class DashPlayerCommand : PlayerCommand<DashPlayerState> { }
@MrVizious
MrVizious / OmniSharpOpenLog.txt
Last active August 8, 2020 01:07
Logs given by vim-omnisharp when trying to open a Unity project
NVIM v0.4.3
OmniSharp server started.
Path: /home/mrvizious/.cache/omnisharp-vim/omnisharp-roslyn/run
Target: /home/mrvizious/Data/Unity/Projects/Vim-Test/Vim-Test.sln
PID: 187694
[info]: OmniSharp.Stdio.Host
Starting OmniSharp on manjaro 0.0 (x64)
[info]: OmniSharp.Services.DotNetCliService
@MrVizious
MrVizious / log.txt
Last active August 6, 2020 23:51
Error log coc-omnisharp
## Output channel: coc-omnisharp
coc-omnisharp activated.
workspace root=/home/mrvizious
## Output channel: cs
initialized...
[Error - 1:27:17 AM] The project system 'OmniSharp.Cake.CakeProjectSystem' threw exception during initialization. - System.UnauthorizedAccessException: Access to the path '/home/mrvizious/.cache/yay/nvidia-vulkan/pkg' is denied. ---> System.IO.IOException: Permission denied
--- End of inner exception stack trace ---
@MrVizious
MrVizious / init.vim
Last active August 6, 2020 01:14
Vimrc
source $HOME/.config/nvim/vim-plug/plugins.vim
set number
set relativenumber
set cursorline
set ignorecase
set smartcase
set clipboard=unnamedplus
set scrolloff=999
set nowrap
set noswapfile
@MrVizious
MrVizious / aliases_javier.sh
Last active March 12, 2020 09:48
My personal settings for navigating bash and vim. Place in /etc/profile.d/ and restart bash. Download with (wget https://gist.githubusercontent.com/MrVizious/da3d3b8772d65fe7587aa32c177a186c/raw/aliases_javier.sh)
bind "TAB:menu-complete"
bind "set show-all-if-ambiguous on"
bind '"\e[Z": menu-complete-backward'
bind "set completion-ignore-case on"
bind "set colored-stats on"
export EDITOR=vim
alias l='ls -la --color=auto'
alias start='tmux a -t base || tmux new -s base'
@MrVizious
MrVizious / bck.20190318030508.navigator.settings.json
Last active May 3, 2019 21:00
Visual Studio Code Settings Sync Gist
{
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"glassit.alpha": 250,
"workbench.startupEditor": "newUntitledFile",
"sync.gist": "33af766cd1399a0d8bfe060e6cb5013c",
"bracketPairColorizer.forceUniqueOpeningColor": true,
"bracketPairColorizer.showHorizontalScopeLine": false,
"workbench.iconTheme": "vscode-icons",
"editor.formatOnSave": true,