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
div > .vimiumHintMarker { | |
padding: 2px 3px; | |
background-color: #282828; | |
border: 0; | |
border-radius: 2px; | |
box-shadow: 0em 0.1em 0.6em 0.1em rgba(0, 0, 0, 0.4); | |
background-image: none; | |
} | |
div > .vimiumHintMarker span { |
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
/* Arc Dark theme */ | |
/* Link hint boxes */ | |
div > .vimiumHintMarker { | |
background: #383c4a; | |
font-size: 12px; | |
border: 0.25em solid #383c4a; | |
border-radius: 0.68em; | |
box-shadow: 0em 0.1em 0.6em 0.1em rgba(0, 0, 0, 0.4); | |
} |
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
# NEOFETCH CONFIG | |
# See this wiki page for more info: | |
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info | |
print_info() { | |
info title | |
info underline | |
info "OS" distro | |
# info "Users" users | |
info "Disk" disk |
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
set TERM "xterm-256color" | |
set EDITOR "micro" | |
set VISUAL "kate" | |
# Disables the welcome message | |
set fish_greeting | |
# Cache command exit status | |
set -g last_status $status |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
void sum_of_two_numbers() { | |
int num1, num2; | |
printf("Hello, world! \n"); | |
printf("Enter number 1 => "); | |
scanf("%d", &num1); | |
printf("Enter number 2 => "); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.