This commit is contained in:
Brian Buller 2015-01-22 09:07:51 -06:00
parent 617b517a3b
commit 1fbdc3052e
6 changed files with 37 additions and 5 deletions

View File

@ -1,6 +1,5 @@
let g:netrw_dirhistmax =10 let g:netrw_dirhistmax =10
let g:netrw_dirhist_cnt =4 let g:netrw_dirhist_cnt =3
let g:netrw_dirhist_1='/Users/brbuller/.homesick/repos/vim-castle/.vim/bundle/vim-autocommit' let g:netrw_dirhist_1='/Users/brbuller/Development/Work/High Touch/Enertech/enertech-v2/assets'
let g:netrw_dirhist_2='/Users/brbuller/.homesick/repos/vim-castle/.vim/bundle' let g:netrw_dirhist_2='/Users/brbuller/Development/Work/High Touch/Enertech/enertech-v2/assets/js'
let g:netrw_dirhist_3='/Users/brbuller/.homesick/repos/vim-castle/.vim/bundle/vimwiki' let g:netrw_dirhist_3='/Users/brbuller/Development/Work/High Touch/Enertech/enertech-v2/assets/js/admin'
let g:netrw_dirhist_4='/Users/brbuller/.homesick/repos/vim-castle/.vim/bundle/vimwiki/plugin'

View File

@ -2,3 +2,6 @@
[[Slackware_PostInstallation|Post-Installation]] [[Slackware_PostInstallation|Post-Installation]]
[[Slackware_FullSystemUpgrade|Full System Upgrade]] [[Slackware_FullSystemUpgrade|Full System Upgrade]]
[[Slackware_GRUB|Installing GRUB]]
[[Slackware_Parallels|Parallels]]

View File

@ -27,6 +27,12 @@ Add the following to `/etc/slackpkg/blacklist`
[0-9]+alien [0-9]+alien
}}} }}}
===== Installing SBOPKG =====
As root:
* Get newest version from: http://www.sbopkg.org/downloads.php
*At writing: http://sbopkg.googlecode.com/files/sbopkg-0.37.0-noarch-1_cng.tgz
* installpkg sbopkg*.tgz
==== Adding a new user ==== ==== Adding a new user ====
{{{ {{{
# useradd # useradd

View File

@ -14,6 +14,11 @@
<p> <p>
<a href="Slackware_FullSystemUpgrade.html">Full System Upgrade</a> <a href="Slackware_FullSystemUpgrade.html">Full System Upgrade</a>
<a href="Slackware_GRUB.html">Installing GRUB</a>
</p>
<p>
<a href="Slackware_Parallels.html">Parallels</a>
</p> </p>
</body> </body>

View File

@ -42,6 +42,20 @@ Add the following to <code>/etc/slackpkg/blacklist</code>
[0-9]+alien [0-9]+alien
</pre> </pre>
<h5 id="toc_0.0.1.2.2">Installing SBOPKG</h5>
<p>
As root:
</p>
<ul>
<li>
Get newest version from: <a href="http://www.sbopkg.org/downloads.php">http://www.sbopkg.org/downloads.php</a>
*At writing: <a href="http://sbopkg.googlecode.com/files/sbopkg-0.37.0-noarch-1_cng.tgz">http://sbopkg.googlecode.com/files/sbopkg-0.37.0-noarch-1_cng.tgz</a>
<li>
installpkg sbopkg*.tgz
</ul>
<h4 id="toc_0.0.1.3">Adding a new user</h4> <h4 id="toc_0.0.1.3">Adding a new user</h4>
<pre> <pre>
# useradd # useradd

View File

@ -42,3 +42,8 @@ let g:ctrlp_custom_ignore = {
let g:gist_open_browser_after_post = 1 let g:gist_open_browser_after_post = 1
let g:gist_post_private = 1 let g:gist_post_private = 1
" }} " }}
" json Formatting {{
nmap <leader>jt <Esc>:%!python -m json.tool<CR><Esc>:set filetype=json<CR>
let g:vim_json_syntax_conceal = 0
" }}