Skip to content

Instantly share code, notes, and snippets.

@yogggoy
Last active February 23, 2024 16:53
Show Gist options
  • Save yogggoy/d52223d6540a2d4bd5749fe64b81047d to your computer and use it in GitHub Desktop.
Save yogggoy/d52223d6540a2d4bd5749fe64b81047d to your computer and use it in GitHub Desktop.
configs
[user]
name =
email =
[alias]
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
[core]
editor = vim
# /etc/minirc.*
# /root/minirc.*
pu port /dev/ttyUSB0
pu baudrate 115200
pu bits 8
pu parity N
pu stopbits 1
pu rtscts No
pu linewrap Yes
# this rc is was stolen from @frantony
# -----------------
startup_message off
#nethack on
#defflow on # will force screen to process ^S/^Q
deflogin on
#autodetach off
# turn visual bell on
vbell on
vbell_msg " Wuff ---- Wuff!! "
# define a bigger scrollback, default is 100 lines
defscrollback 1024
# ------------------------------------------------------------------------------
# SCREEN KEYBINDINGS
# ------------------------------------------------------------------------------
# Remove some stupid / dangerous key bindings
bind ^k
#bind L
bind ^\
# Make them better
bind \\ quit
bind K kill
bind I login on
bind O login off
bind } history
# An example of a "screen scraper" which will launch urlview on the current
# screen window
#
#bind ^B eval "hardcopy_append off" "hardcopy -h $HOME/.screen-urlview" "screen urlview $HOME/.screen-u$
# ------------------------------------------------------------------------------
# TERMINAL SETTINGS
# ------------------------------------------------------------------------------
# The vt100 description does not mention "dl". *sigh*
termcapinfo vt100 dl=5\E[M
# turn sending of screen messages to hardstatus off
hardstatus off
# Set the hardstatus prop on gui terms to set the titlebar/icon title
#termcapinfo xterm*|rxvt*|kterm*|Eterm* hs:ts=\E]0;:fs=\007:ds=\E]0;\007
# use this for the hard status string
#hardstatus string "%h%? users: %u%?"
# An alternative hardstatus to display a bar at the bottom listing the
# windownames and highlighting the current windowname in blue. (This is only
# enabled if there is no hardstatus setting for your terminal)
#
hardstatus lastline "%-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%<"
# set these terminals up to be 'optimal' instead of vt100
termcapinfo xterm*|linux*|rxvt*|Eterm* OP
# Change the xterm initialization string from is2=\E[!p\E[?3;4l\E[4l\E>
# (This fixes the "Aborted because of window size change" konsole symptoms found
# in bug #134198)
termcapinfo xterm 'is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l'
# To get screen to add lines to xterm's scrollback buffer, uncomment the
# following termcapinfo line which tells xterm to use the normal screen buffer
# (which has scrollback), not the alternate screen buffer.
#
termcapinfo xterm|xterms|xs|rxvt|Eterm ti@:te@
# ------------------------------------------------------------------------------
# STARTUP SCREENS
# ------------------------------------------------------------------------------
# Example of automatically running some programs in windows on screen startup.
#
# The following will open top in the first window, an ssh session to monkey
# in the next window, and then open mutt and tail in windows 8 and 9
# respectively.
#
# screen top
# screen -t monkey ssh monkey
# screen -t mail 8 mutt
# screen -t daemon 9 tail -f /var/log/daemon.log
caption always "%-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%<"
"call plug#begin('~/.vim/plugged')
"Plug 'nightsense/office'
"call plug#end()
colorscheme evening
set number
syntax on
noh " deselect search selection; not work
if &term =~ '256color'
" disable Background Color Erase (BCE) so that color schemes
" " render properly when inside 256-color tmux and GNU screen.
" " see also http://snk.tuxfamily.org/log/vim-256color-bce.html
set t_ut=
endif
:set tabstop=4
:set shiftwidth=4
:set expandtab
" showing trailing spaces
:highlight ExtraWhitespace ctermbg=red guibg=red
:match ExtraWhitespace /\s\+$/
:set noeol
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,0e,00,3a,00,00,00,00,00
// VSCode keybindings file
// Поместите настраиваемые сочетания клавиш в этот файл, чтобы перезаписать клавиши по умолчанию.
[
{
"key": "alt+j",
"command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
{
"key": "alt+k",
"command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+pageup",
"command": "-workbench.action.previousEditor"
},
{
"key": "ctrl+pagedown",
"command": "-workbench.action.nextEditor"
},
{
"key": "ctrl+tab",
"command": "-workbench.action.openNextRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+shift+tab",
"command": "-workbench.action.openPreviousRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+pageup",
"command": "workbench.action.openPreviousRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+pagedown",
"command": "workbench.action.openNextRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+[Slash]",
"command": "editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+[IntlBackslash]",
"command": "-editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "backspace",
"command": "deleteLeft",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "backspace",
"command": "-deleteLeft",
"when": "editorTextFocus && !editorReadonly"
},
{ "key": "capslock",
"command": "deleteLeft",
"when": "editorTextFocus && !editorReadonly"
},
{ "key": "ctrl+capslock",
"command": "deleteWordLeft",
"when": "editorTextFocus && !editorReadonly"
},
{ "key": "ctrl+[ ctrl+]",
"command": "workbench.action.terminal.focus"
},
{ "key": "ctrl+] ctrl+[",
"command": "workbench.action.focusActiveEditorGroup"
},
{
"key": "ctrl+q",
"command": "-workbench.action.quit"
},
{
"key": "ctrl+k ctrl+l",
"command": "editor.action.transformToLowercase"
},
{
"key": "ctrl+k ctrl+shift+l",
"command": "editor.action.transformToUppercase"
}
]
// VSCode extensions:
// stkb.rewrap
// ms-python.python
// ms-python.flake8
// mshr-h.veriloghdl
// mhutchie.git-graph
// Gruntfuggly.todo-tree
// PKief.material-icon-theme
// wayou.vscode-todo-highlight
// DavidAnson.vscode-markdownlint
// jkjustjoshing.vscode-text-pastry
// VSCode settings file
{
"workbench.colorTheme": "Quiet Light",
"workbench.iconTheme": "material-icon-theme", // PKief.material-icon-theme
"workbench.panel.location": "bottom",
"window.zoomLevel": 0,
"window.commandCenter": false,
"window.titleBarStyle": "custom",
"editor.rulers": [120],
"editor.minimap.enabled": true,
"editor.minimap.showSlider":"always",
"editor.minimap.renderCharacters":false,
"editor.minimap.maxColumn": 75,
"editor.renderWhitespace": "all",
"editor.wordWrap": "on",
"editor.quickSuggestions": {"other": "off"},
"files.autoSave": "off",
"files.trimTrailingWhitespace": true,
"extensions.ignoreRecommendations": true,
"python.pythonPath": "/usr/bin/python",
"python.linting.enabled": false,
"python.linting.enabledWithoutWorkspace": false,
"flake8.args": ["--max-line-length=120"],
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"verilog.linting.linter": "iverilog",
"C_Cpp.updateChannel": "Insiders",
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"[retroasm_6502]": {
"editor.tabSize": 8,
},
"todohighlight.include": [
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx",
"**/*.html",
"**/*.php",
"**/*.css",
"**/*.scss",
"**/*.v",
"**/*.c",
"**/*.cpp",
"**/*.sv",
"**/*.vhd"
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment