Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vimrc
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
vimrc
Commits
e1c1f32a
Commit
e1c1f32a
authored
Jan 16, 2018
by
Murukesh Mohanan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
work updates
parent
71aaa924
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
3 deletions
+21
-3
local/work.vim
local/work.vim
+2
-0
spell/en.utf-8.add
spell/en.utf-8.add
+10
-0
vimrc
vimrc
+9
-3
No files found.
local/work.vim
View file @
e1c1f32a
...
...
@@ -3,3 +3,5 @@ if !exists('g:airline_symbols')
let
g:airline_symbols
=
{}
endif
let
g:airline_symbols
.
space
=
"\ua0"
let
g:syntastic_python_python_exec
=
'/usr/local/bin/python3'
let
g:ycm_python_binary_path
=
'/usr/local/bin/python3'
spell/en.utf-8.add
View file @
e1c1f32a
...
...
@@ -92,3 +92,13 @@ YAML
config
ACL
OpenStack
dtests
timestamp
perf
Compactions
GC
compactions
timeseries
Rakuten
IoT
microservices
vimrc
View file @
e1c1f32a
...
...
@@ -122,7 +122,7 @@ endfunction
"execute pathogen#infect()
call plug#begin()
" Common plugins
Plug 'vim-scripts/diffchar.vim'
"
Plug 'vim-scripts/diffchar.vim'
Plug 'scrooloose/nerdtree'
Plug 'ervandew/supertab'
Plug 'scrooloose/syntastic'
...
...
@@ -136,10 +136,12 @@ Plug 'majutsushi/tagbar', {'for': ['cpp', 'c', 'go', 'sh', 'javascript']}
Plug 'godlygeek/tabular'
Plug 'dhruvasagar/vim-table-mode'
Plug 'tpope/vim-liquid', {'for': ['html', 'markdown']}
Plug 'Vimjas/vim-python-pep8-indent'
Plug 'tpope/vim-obsession'
if executable('cmake')
" YCM command lifted from vim-plug readme
Plug 'Valloric/YouCompleteMe', { 'do': YCMInstallCmd(), 'for': ['cpp', 'c', 'sh', 'javascript', 'vim', 'tex', 'go'] }
Plug 'Valloric/YouCompleteMe', { 'do': YCMInstallCmd(), 'for': ['cpp', 'c', 'sh', 'javascript', 'vim', 'tex', 'go'
, 'python'
] }
autocmd! User YouCompleteMe if !has('vim_starting') | call youcompleteme#Enable() | endif
endif
if executable('go')
...
...
@@ -188,8 +190,12 @@ let g:SuperTabClosePreviewOnPopupClose = 1
set omnifunc=syntaxcomplete#Complete
set foldmethod=indent
set foldlevel=10
let g:syntastic_cpp_compiler_options = ' -std=c++1
1
'
let g:syntastic_cpp_compiler_options = ' -std=c++1
4
'
let g:syntastic_python_python_exec = '/usr/bin/python3'
let g:syntastic_python_checkers = ['flake8']
let g:syntastic_python_flake8_args = ['--ignore', 'E501']
let g:syntastic_check_on_open = 0
let g:syntastic_check_on_wq = 1
let g:airline#extensions#tabline#enabled = 0
let g:ctrlp_prompt_mappings = {
\ 'AcceptSelection("e")': ['<c-t>'],
...
...
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