Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
home
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Murukesh Mohanan
home
Commits
ce6f444c
Commit
ce6f444c
authored
Sep 16, 2015
by
Murukesh Mohanan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'temp'
parents
fd08eeba
82f6fb57
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
9 deletions
+11
-9
.vim/bundle/eregex.vim
.vim/bundle/eregex.vim
+1
-1
.vim/bundle/nerdtree
.vim/bundle/nerdtree
+1
-1
.vim/bundle/syntastic
.vim/bundle/syntastic
+1
-1
.vim/bundle/vim-fugitive
.vim/bundle/vim-fugitive
+1
-1
.vim/vimrc
.vim/vimrc
+7
-5
No files found.
eregex.vim
@
e1692107
Subproject commit e
5ad9c566c7e8410f9631db63a8b380ed8f19c7d
Subproject commit e
1692107da0b678001127e9cdcacf028f5c246a8
nerdtree
@
8c7534bc
Subproject commit
bcf3de4fdffae45fc7c85b6b84a01b37177924aa
Subproject commit
8c7534bc9e1d0c2f18bf94c1440c4ae6b102b5d6
syntastic
@
8164240f
Subproject commit
1be907716e4940d2387545e3e42b6411c9c58a6c
Subproject commit
8164240f6f0aaed2055dae45fc0e5c6f6ec30b3d
vim-fugitive
@
b7b23001
Subproject commit b
319b694539017dcd789dc2c42f784a30d7b28b8
Subproject commit b
7b23001def8d2ae816ff6dd772cd50976189e0e
.vim/vimrc
View file @
ce6f444c
...
...
@@ -89,10 +89,9 @@ nnoremap <Up> gk
execute pathogen#infect()
colorscheme molokai
if !empty($MAN_PN)
autocmd StdinReadPost * set ft=man | file $MAN_PN
endif
highlight Normal ctermbg=none
highlight NonText ctermbg=none
highlight Visual ctermbg=black
" From http://vi.stackexchange.com/questions/258/
autocmd BufWritePre *.sh if !filereadable(expand('%')) | let b:is_new = 1 | endif
...
...
@@ -103,6 +102,7 @@ let g:SuperTabDefaultCompletionType = "context"
let g:SuperTabClosePreviewOnPopupClose = 1
set omnifunc=syntaxcomplete#Complete
set foldmethod=syntax
set foldlevelstart=99
let g:syntastic_cpp_compiler_options = ' -std=c++11'
let g:syntastic_python_python_exec = '/usr/bin/python3'
let g:airline#extensions#tabline#enabled = 1
...
...
@@ -136,9 +136,11 @@ let g:DiffUpdate=1
" command -nargs=0 Cscope cs add $VIMSRC/src/cscope.out $VIMSRC/src
" endif
if !empty($MAN_PN)
autocmd StdinReadPost * set ft=man | file $MAN_PN
elseif @% == "" && getcwd() == "/tmp"
" From http://vi.stackexchange.com/questions/239/
" with exception for reading manpages
if empty($MAN_PN) && @% == "" && getcwd() == "/tmp"
silent find test.*
endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment