-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimpcrc
53 lines (41 loc) · 1.2 KB
/
.vimpcrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
" Configuration of vimpc is done using vimpc commands
" these can include commands which require an mpd connection
"
" NB: Comments are very basic and must be on their own line
echo Parsing config file
" Set the default tab
set window playlist
" Set the windows to show at startup
set windows library,playlist
" Stop playing music when we quit
"set stoponquit
" A silly example of an alias
"alias smiths deleteall; findartist! The Smiths; play 1
" Example maps
" map the F key to change to the browse window, go to the first line and enter search mode
"map F :browse<C-M>gg/
" map @ to switch to add next, add a song, then change back
"map @ :set add next<C-M>a:set add end<C-M>
" Connect to a specific host using the config file
"connect somehost someport
" Turn consume on when we connect
"consume on
" Ensure that the database is up to date each connect
"update
" A more complex example, When we start vimpc
" - clear the playlist
" - add all songs
" - shuffle
" - start playling
"deleteall
"addall
"shuffle
"play 1
" Color the statusline and tabs
"highlight status blackbg
"highlight tab blackbg
highlight status default
highlight tab default
" Case insensitive search
set ignorecase
echo Config File Complete