some stuff
This commit is contained in:
commit
e60e882c6b
|
@ -0,0 +1,3 @@
|
|||
// xrdb -merge ~/.Xresources
|
||||
xterm*faceName: Monospace
|
||||
xterm*faceSize: 16
|
|
@ -0,0 +1,39 @@
|
|||
# ~/.bashrc: executed by bash(1) for non-login shells.
|
||||
|
||||
# Note: PS1 and umask are already set in /etc/profile. You should not
|
||||
# need this unless you want different defaults for root.
|
||||
# PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ '
|
||||
# umask 022
|
||||
|
||||
# You may uncomment the following lines if you want `ls' to be colorized:
|
||||
# export LS_OPTIONS='--color=auto'
|
||||
# eval "`dircolors`"
|
||||
# alias ls='ls $LS_OPTIONS'
|
||||
# alias ll='ls $LS_OPTIONS -l'
|
||||
# alias l='ls $LS_OPTIONS -lA'
|
||||
#
|
||||
# Some more alias to avoid making mistakes:
|
||||
alias rm='rm -i'
|
||||
alias cp='cp -i'
|
||||
alias mv='mv -i'
|
||||
|
||||
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
|
||||
. /etc/bash_completion
|
||||
fi
|
||||
|
||||
# read in custom bash settings if you want
|
||||
#if [ -f ~/jcarr/bashrc/.jcarr ] && ! shopt -oq posix; then
|
||||
# . ~/jcarr/bashrc/.jcarr
|
||||
#fi
|
||||
|
||||
# read in custom bash settings if you want
|
||||
case "$LC_USER" in
|
||||
jcarr2)
|
||||
. ~/jcarr/bashrc/.jcarr
|
||||
;;
|
||||
*)
|
||||
if [ -f ~/$LC_USER/bashrc/.$LC_USER ] && ! shopt -oq posix; then
|
||||
. ~/$LC_USER/bashrc/.$LC_USER
|
||||
fi
|
||||
;;
|
||||
esac
|
|
@ -0,0 +1,4 @@
|
|||
[url "git@git.wit.org:"]
|
||||
insteadOf = https://git.wit.org/
|
||||
[http]
|
||||
sslVerify = true
|
|
@ -0,0 +1,3 @@
|
|||
# Machine-generated file - use setup menu in minicom to change parameters.
|
||||
pu port /dev/ttyUSB1
|
||||
pu rtscts No
|
|
@ -0,0 +1,27 @@
|
|||
" also look at /etc/vim/vimrc
|
||||
runtime! debian.vim
|
||||
|
||||
filetype plugin indent on
|
||||
|
||||
" Plugins
|
||||
" Plugin 'fatih/vim-go'
|
||||
|
||||
set mouse=r
|
||||
set encoding=utf-8
|
||||
set fileencoding=utf-8
|
||||
syntax on
|
||||
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
||||
|
||||
" display's line numbers
|
||||
" -set t_te=
|
||||
|
||||
" to keep vim from clearing the screen on exit
|
||||
:set t_te=
|
||||
|
||||
" stuff for vim-go
|
||||
" let g:go_def_mode='gopls'
|
||||
" let g:go_info_mode='gopls'
|
||||
|
||||
" vim -u ~/.config/.vimrc
|
||||
" set viminfo+=n~/.vim/viminfo
|
||||
:set viminfo='50,<1000,s100,:0,n~/.cache/viminfo
|
Loading…
Reference in New Issue