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
# Setting shell to use in tmux | |
# set-option -g default-shell "/usr/bin/fish" | |
# Vim-like config | |
setw -g mode-keys vi | |
# Bind prefix | |
unbind C-b | |
set -g prefix C-a |
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
# Inspired by making a mixture the following themes: | |
# robbyrussell + arrow + lambda | |
# changing some colors and elements positions | |
local ret_status="%(?:%{$fg_bold[grey]%}λ :%{$fg_bold[red]%} λ )" | |
PROMPT=' ${ret_status}%{$fg[magenta]%}%c %{$fg[black]%}➤ %{$reset_color%}' | |
RPROMPT='$(git_prompt_info) %{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[grey]%}git:(%{$fg[cyan]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " |
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
exec gamemode_competitive | |
sv_cheats 1 | |
mp_freezetime 1 | |
mp_round_restart_delay 1 | |
mp_maxmoney 50000 | |
mp_startmoney 50000 | |
mp_roundtime_defuse 60 | |
mp_buy_anywhere 1 | |
mp_buytime 1000000 | |
mp_warmuptime 666666 |
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
clear | |
echo " " | |
echo " " | |
echo "---------------------------------------------" | |
echo "----------Loading raw config...---------" | |
echo "---------------------------------------------" | |
echo " " | |
echo " " | |
// === MOUSE SETTINGS === |
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
// My ultimate superb 360 no scope headshot Urban Terror config xD | |
// rawBasic UrT config. | |
unbindall | |
//======= MOVEMENT & ACTIONS =======// | |
bind TAB "+scores" | |
bind SPACE "+moveup" | |
bind a "+moveleft" | |
bind w "+forward" |
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 config mostly based on thoughtbot config | |
" with parts of various mythical creatures | |
" and some of my crazy ideas | |
" First python call defines what version uses after, call python3 to force it first. | |
if has('python3') | |
endif | |
"" vim-plug plugin manager | |
"" Automatically setting up vim-plug, taken from https://github.com/junegunn/vim-plug/wiki/tips#automatic-installation |