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
//resolution 1600x900 | |
mat_monitorgamma 1.6 | |
cl_crosshair_drawoutline "0" | |
cl_crosshair_dynamic_maxdist_splitratio "0.35" | |
cl_crosshair_dynamic_splitalpha_innermod "1" | |
cl_crosshair_dynamic_splitalpha_outermod "0.5" | |
cl_crosshair_dynamic_splitdist "7" | |
cl_crosshair_friendly_warning "1" | |
cl_crosshair_outlinethickness "1" | |
cl_crosshair_sniper_show_normal_inaccuracy "0" |
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
// Server config | |
sv_cheats 1 | |
game_type 0 | |
game_mode 1 | |
mp_limitteams 0 | |
mp_autoteambalance 0 | |
mp_roundtime 60 | |
mp_roundtime_defuse 60 | |
mp_maxmoney 60000 | |
mp_startmoney 60000 |
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
/* This stylesheet is generated, DO NOT EDIT */ | |
/* Copyright 2009, 2015 Red Hat, Inc. | |
* | |
* Portions adapted from Mx's data/style/default.css | |
* Copyright 2009 Intel Corporation | |
* | |
* This program is free software; you can redistribute it and/or modify it | |
* under the terms and conditions of the GNU Lesser General Public License, | |
* version 2.1, as published by the Free Software Foundation. | |
* |
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
" Auto install VimPlug | |
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim' | |
if empty(glob(data_dir . '/autoload/plug.vim')) | |
silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' | |
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
endif | |
"======= VimPlug Section ========== | |
call plug#begin('~/.vim/plugged') |
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
# packages I use for JavaScript and a little TypeScript development | |
apm install atom-easy-jsdoc | |
apm install atom-live-server | |
apm install atom-typescript | |
apm install linter | |
apm install linter-ui-default | |
# atom-community series | |
apm install atom-ide-base |
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
"======= VimPlug Section ========== | |
call plug#begin() | |
" That status bar la | |
" Plug 'vim-airline/vim-airline' | |
" Plug 'vim-airline/vim-airline-themes' | |
" File manager | |
" Plug 'scrooloose/nerdtree' | |
" Plug 'Xuyuanp/nerdtree-git-plugin' |
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
inherits = "catppuccin_frappe" | |
"ui.bufferline.active" = { fg = "blue", bg = "surface0", modifiers = ["bold",] } |
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
vim.cmd("set encoding=UTF-8") | |
vim.cmd("set number") | |
vim.cmd("set ruler") | |
vim.cmd("set visualbell") | |
vim.cmd("set wrap") | |
vim.cmd("set tabstop=4") | |
vim.cmd("set shiftwidth=4") | |
vim.cmd("set expandtab") | |
-- make sure the packer plugin manager is installed |
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
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#define my_sizeof(type) \ | |
({ \ | |
__typeof__(type) _a[2]; \ | |
(size_t) & _a[1] - (size_t)&_a[0]; \ | |
}) |
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
( | |
selected_tab: Reset, | |
command_fg: Rgb(76, 79, 105), //original 198, 208, 245 | |
selection_bg: Rgb(98, 104, 128), | |
selection_fg: Rgb(198, 208, 245), | |
cmdbar_bg: Rgb(230, 233, 239), //original 41, 44, 60 | |
cmdbar_extra_lines_bg: Rgb(230, 233, 239), | |
disabled_fg: Rgb(180, 183, 191), //original 131, 139, 167 | |
diff_line_add: Rgb(166, 209, 137), | |
diff_line_delete: Rgb(231, 130, 132), |
OlderNewer