git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.gitconfig
Commit message (Expand)AuthorAgeFilesLines
* Anchoring current-branch alias in gitconfigv1.6.0H. P. 2026-01-261-0/+2
* add tag.gpgSign for the sake of display, currently all options are still set ...H. P. 2025-06-251-0/+2
* .gitconfig: set core.abbrev to 4, set equal sign (=) indentationsH. P. 2025-06-251-15/+17
* Include pdk templates git directory as 'safe' %)H. P. 2025-04-201-0/+2
* New aliasesH. P. 2025-03-151-0/+2
2024-10-311-1/+4
* here goes another attemptH. P. 2024-07-141-0/+1
* + credential helper, + memory windowH. P. 2024-05-251-0/+6
* more git aliasesv1.1.0H. P. 2024-05-251-0/+8
* local fixesH. P. 2024-05-251-1/+1
* +new long format for git logv0.9.2H. P. 2022-05-021-0/+3
* +default pull strategy: no rebaseH. P. 2022-03-241-0/+2
* $meaningful_git_commit_message[213]H. P. 2022-03-231-0/+3
* Initial commitH. P. 2022-03-191-0/+74
Literal.String.Regex */ .highlight .s1 { color: #aa5500 } /* Literal.String.Single */ .highlight .ss { color: #0000aa } /* Literal.String.Symbol */ .highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */ .highlight .fm { color: #00aa00 } /* Name.Function.Magic */ .highlight .vc { color: #aa0000 } /* Name.Variable.Class */ .highlight .vg { color: #aa0000 } /* Name.Variable.Global */ .highlight .vi { color: #aa0000 } /* Name.Variable.Instance */ .highlight .vm { color: #aa0000 } /* Name.Variable.Magic */ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
" vim:syntax=vim
set nocompatible
set ruler
set showmode
set showmatch
set hlsearch
set undolevels=64
" who came up with the 'brilliant' idea that make mouse input relevant for vim
" inside a terminal AS DEFAULT?
set mouse=
set ttymouse=
set shiftwidth=0
set tabstop=4
set ignorecase
set autoindent
set copyindent
set noexpandtab
au BufReadPost *.inc set syntax=php " .inc will be considered PHP

syntax on
filetype plugin on
set background=dark
" we'd like to use industry, but it sets the background to black so we
" cannot change this over here. f'k. ron is a good compromise.
colorscheme ron
hi Normal ctermbg=NONE guibg=NONE

set t_Co=256
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#formatter = 'unique_tail_improved'
let g:airline_powerline_fonts = 1
let g:airline_theme='molokai'

if !exists('g:airline_symbols')
  let g:airline_symbols = {}
endif
" unicode symbols
let g:airline_left_sep = 'Β»'
let g:airline_left_sep = 'β–Ά'
let g:airline_right_sep = 'Β«'
let g:airline_right_sep = 'β—€'
let g:airline_symbols.crypt = 'πŸ”’'
let g:airline_symbols.linenr = '☰'
let g:airline_symbols.linenr = '␊'
let g:airline_symbols.linenr = '␀'
let g:airline_symbols.linenr = 'ΒΆ'
let g:airline_symbols.maxlinenr = ''
let g:airline_symbols.maxlinenr = '㏑'
let g:airline_symbols.branch = 'βŽ‡'
let g:airline_symbols.paste = 'ρ'
let g:airline_symbols.paste = 'Þ'
let g:airline_symbols.paste = 'βˆ₯'
let g:airline_symbols.spell = 'Ꞩ'
let g:airline_symbols.notexists = 'Ι†'
let g:airline_symbols.whitespace = 'Ξ'

let airline#extensions#syntastic#enabled = 1
let g:syntastic_python_checkers = ['pylint']
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:syntastic_error_symbol = "βœ—"
let g:syntastic_warning_symbol = "⚠"