summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2021-03-05 22:51:14 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2021-03-05 22:51:14 +0100
commit5a272fc41db0892f7888b59bfd92734a36678051 (patch)
treedc1a0b884d94197b8abf96396a6847db1a16d58c
parentfffb08d7921d1537b523c35b7733bb8f47dec197 (diff)
downloaddotfiles-5a272fc41db0892f7888b59bfd92734a36678051.tar.gz
dotfiles-5a272fc41db0892f7888b59bfd92734a36678051.tar.bz2
dotfiles-5a272fc41db0892f7888b59bfd92734a36678051.zip
Cleanup
-rw-r--r--.hgrc24
-rw-r--r--.ncmpcpp/bindings5
-rw-r--r--.ncmpcpp/config6
-rw-r--r--.vimperatorrc66
4 files changed, 0 insertions, 101 deletions
diff --git a/.hgrc b/.hgrc
deleted file mode 100644
index 4adea58..0000000
--- a/.hgrc
+++ /dev/null
@@ -1,24 +0,0 @@
-[ui]
-username = René 'Necoro' Neumann <necoro@necoro.net>
-
-[extensions]
-hgext.fetch =
-hgext.purge =
-hgext.graphlog =
-hgext.rebase =
-hgext.progress =
-hgext.record =
-mq =
-transplant =
-shelve =
-
-[hooks]
-commit.diffstat = python:~/.hgext/hgdiffstat.py:diffstat
-changegroup.diffstat = python:~/.hgext/hgdiffstat.py:diffstat
-
-[alias]
-view = !hgview
-k = view
-
-[hostfingerprints]
-hg.model.in.tum.de = 95:1c:52:ee:4c:5e:b6:40:01:13:c5:5d:82:4a:47:8d:8e:0a:30:09
diff --git a/.ncmpcpp/bindings b/.ncmpcpp/bindings
deleted file mode 100644
index 536e94b..0000000
--- a/.ncmpcpp/bindings
+++ /dev/null
@@ -1,5 +0,0 @@
-def_key "ctrl-a"
- push_characters "y"
- clear_main_playlist
- add_item_to_playlist
- run_external_command "mpc -q play"
diff --git a/.ncmpcpp/config b/.ncmpcpp/config
deleted file mode 100644
index 41c8755..0000000
--- a/.ncmpcpp/config
+++ /dev/null
@@ -1,6 +0,0 @@
-user_interface = "alternative"
-default_space_mode = "add"
-generate_win32_compatible_filenames = "no"
-display_bitrate = "yes"
-
-# vim:ft=conf
diff --git a/.vimperatorrc b/.vimperatorrc
deleted file mode 100644
index 4ce9949..0000000
--- a/.vimperatorrc
+++ /dev/null
@@ -1,66 +0,0 @@
-" ==========
-" SETTINGS
-" ==========
-
-" show URL-Bar in FF
-"set guioptions+=T
-set toolbars=none,navigation,tabs
-
-" Open resized popups in a new window
-" set popups=resized
-
-" Automatically show completions while you are typing.
-"set wildoptions=auto
-
-" what is completed
-" s --> Search engines and keyword URLs
-" l --> FF location bar entries
-" f --> local files
-set complete=slf
-
-" FF setting: disable loading via middle-mouse click
-set! middlemouse.contentLoadURL=false
-
-" FF setting: disable highlighting of the domain name
-set! browser.urlbar.formatting.enabled=false
-
-" FF setting: do not close window when closing the last tab
-set! browser.tabs.closeWindowWithLastTab=false
-
-" better navigation in forums
-set previouspattern^=\\b[zZ]urück\\b
-set nextpattern^=\\b[wW]eiter\\b
-
-" open addons and help in new tab by default
-set newtab=addons,help
-
-let mapleader=","
-
-" ===========
-" MAPPINGS
-" ===========
-
-" Better print mapping
-map <C-p> :ha<CR>
-
-" Backspace for backwards
-map <BS> H
-
-" switch C-O and C-I s.t. they are more logical
-noremap <C-o> <C-i>
-noremap <C-i> <C-o>
-
-" paste
-map <A-p> :pastebin
-
-" TUM eAccess
-map <Leader>e :js liberator.open("javascript:void(location.href='https://eaccess.ub.tum.de:2443/login?url='+location.href)")<CR>
-
-" 'tabgroup' is way too long
-cabbrev tg tabgroups
-
-" two tabgroups: 'default' and 'news'
-map <Leader>n :tabgroups 1switch<CR>
-map <Leader>N :tabgroups pushtab! news<CR>
-
-" vim: ft=vim