]> Vexing Labs - dotfiles.git/commitdiff
Minor vim changes, new submodule
authorAdam A.G. Shamblin <adam.shamblin@gmail.com>
Sun, 27 Aug 2017 21:48:32 +0000 (15:48 -0600)
committerAdam A.G. Shamblin <adam.shamblin@gmail.com>
Sun, 27 Aug 2017 21:48:32 +0000 (15:48 -0600)
.gitignore
.gitmodules
dotbash_profile
dotvim/bundle/vim-solidity [new submodule]
dotvimrc

index 5a22effdbfd6b983a23bec99886f8057ceb1c623..4bdd4b3794ca243a53b66e814db7b6ca9550cd41 100644 (file)
@@ -1,3 +1,4 @@
 *.swp
 *~
 .DS_Store
+.netrwhist
index fe233292c8f2abf459f9d185cbebcbb9b264d1cc..fceefd45385e8acff508b19e088435cbf58d97e2 100644 (file)
@@ -22,3 +22,6 @@
 [submodule "dotvim/bundle/typescript-vim"]
        path = dotvim/bundle/typescript-vim
        url = https://github.com/leafgarland/typescript-vim.git
+[submodule "dotvim/bundle/vim-solidity"]
+       path = dotvim/bundle/vim-solidity
+       url = git@github.com:tomlion/vim-solidity.git
index 9b9cf2804a328847b7157d6322debafa0081096e..7106bdf29d76499ed7458c83415dba51f6f47601 100644 (file)
@@ -156,3 +156,6 @@ export PATH
 # The original version is saved in .bash_profile.pysave
 PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
 export PATH
+
+export PATH="$HOME/.cargo/bin:$PATH"
+export PATH="~/.npm-global/bin:$PATH"
diff --git a/dotvim/bundle/vim-solidity b/dotvim/bundle/vim-solidity
new file mode 160000 (submodule)
index 0000000..3375398
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit 33753985e7a8c4bda8f8f93a0cc4ea181547becd
index 568b8095919ead6ecbc1a699188eed649879143e..a59cf695d04db65da37d9fa3a18b3462c17c2389 100644 (file)
--- a/dotvimrc
+++ b/dotvimrc
@@ -36,7 +36,7 @@ set switchbuf=usetab
 set mouse=a
 set ttymouse=xterm2
 set guioptions-=T
-set guifont=Droid\ Sans\ Mono\ 10
+set guifont=Menlo:h13
 
 map <C-t> :tabnew<cr>
 map <C-tab> :tabnext<cr>
@@ -98,6 +98,7 @@ au BufNewFile,BufRead *.md,*.txt setlocal textwidth=80
 au BufWritePost *.py call Flake8()
 au BufWritePost *.js :JSHint
 au BufWritePost *.ts :TSLint
+au BufWritePost *.go :GoLint
 
 au BufNewFile,BufRead *.dat setlocal noexpandtab
 au BufNewFile,BufRead *.jade setlocal noexpandtab