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
echo '~/.local/bin/mise activate fish | source' >> ~/.config/fish/config.fish |
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
return { | |
enable_wayland = false, | |
color_schemes = { | |
["Gnome Light"] = require("gnome"), | |
["Charmful Dark"] = require("charmful"), | |
}, | |
color_scheme = "Catppuccin Mocha", | |
font = require("wezterm").font("CaskaydiaCove NF"), | |
font_size = 16, | |
default_cursor_style = "BlinkingBar", |
Durante la realización de las diferentes prácticas, se habrá usted percatado que cada vez que se cierra sesión o cambia de ordenador pierde toda configuración o modificación que hubiera sido realizada en la configuración de Ubuntu. Esto es debido a que las máquinas virtuales del centro de cálculo son regeneradas en cada inicio de sesion.
Esto es un comportamiento altamente inconveniente.
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
Show hidden characters
{ | |
"image": "hadronomy/cpp-devenv:1.0", | |
"extensions": [ | |
"ms-vscode.cpptools-extension-pack", | |
"eamodio.gitlens", | |
"mhutchie.git-graph", | |
"ms-vscode.makefile-tools" | |
], | |
"settings": { | |
"files.autoSave": "afterDelay" |
From the folder you want to tar do:
tar cvfz ../name.tar.gz --exclude-from=.tarignore *
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
code --folder-uri vscode-remote://ssh-remote+usuario@vm.pablohdezj.me/home/usuario |
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
call plug#begin('~/.vim/plugged') | |
" Make sure you use single quotes | |
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align | |
Plug 'junegunn/vim-easy-align' | |
" One Dark Theme | |
Plug 'joshdick/onedark.vim' |
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
using System; | |
using System.Diagnostics.CodeAnalysis; | |
using System.IO; | |
using System.Reflection; | |
using Quarktic.OdinSerializer.Utilities; | |
using UnityEditor; | |
using UnityEngine; | |
#if UNITY_EDITOR |