Screenshots:
This file contains 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
.white-theme, | |
html[data-theme=light] { | |
--cl-white: #fff; | |
--cl-alabaster: #f9fafb; | |
--cl-blackhaze: #f5f6f8; | |
--cl-antiflash: #f2f3f5; | |
--cl-athens: #eef0f4; | |
--cl-gallery: #eeeff0; | |
--cl-fadedwhite: #ececec; | |
--cl-lilac: #e9e9e9; |
This file contains 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
const USERNAME = "rotate-bot"; | |
const ws = require('ws'); | |
const client = new ws(`wss://combat.sege.dev/socket?key=${USERNAME}&name=${USERNAME}`); | |
client.on('open', () => { | |
console.log('Connected!'); | |
setInterval(() => { | |
client.send(JSON.stringify({ |
This file contains 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
" Hiccup Theme for Vim | |
" Author: Huy Tran | |
" License: BSD 3 Clauses | |
" Put this file to: colors/hiccup.vim | |
highlight clear | |
if exists('syntax_on') | |
syntax reset | |
endif |
This file contains 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
local wezterm = require 'wezterm' | |
local config = {} | |
if wezterm.config_builder then | |
config = wezterm.config_builder() | |
end | |
config.color_scheme = 'One Half Black (Gogh)' | |
config.font = wezterm.font 'Office Code Pro' |
This file contains 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
<scheme name="Fleetjetbrain-color-theme" parent_scheme="Darcula" version="1"> | |
<colors> | |
<option name="CONSOLE_BACKGROUND_KEY" value="1E1F22" /> | |
<option name="LINE_NUMBERS_COLOR" value="D6D6DD" /> | |
<option name="SELECTION_BACKGROUND" value="163761" /> | |
<option name="CARET_ROW_COLOR" value="292929" /> | |
<option name="WHITESPACES" value="737373" /> | |
<option name="CARET_COLOR" value="D6D6DD" /> | |
<option name="INDENT_GUIDE" value="737373" /> | |
<option name="SELECTED_INDENT_GUIDE" value="737373" /> |
This file contains 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
let mapleader=" " | |
set ideajoin | |
set clipboard+=unnamed | |
set clipboard+=ideaput | |
inoremap jk <ESC> | |
nnoremap <C-j> 10jzz | |
nnoremap <C-k> 10kzz | |
nnoremap H h |
This file contains 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
[ | |
{ | |
"context": "Editor", | |
"bindings": { | |
"cmd-b": "editor::GoToDefinition", | |
"cmd-shift-b": "editor::GoToTypeDefinition", | |
"cmd-r": "project_symbols::Toggle", | |
"cmd-0": "workspace::ToggleLeftSidebar", | |
"ctrl-0": "outline::Toggle" | |
} |
This file contains 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
#!/usr/bin/env python3 | |
############################################################################## | |
# Installation: | |
# First, run the following command to install the required dependencies: | |
# pip3 install rumps | |
# Then, copy the script to /usr/bin/local/tmr | |
############################################################################## | |
import rumps |
NewerOlder