Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
allworldit
awit-vim-superawesome
Commits
794ed1b7
Commit
794ed1b7
authored
Dec 12, 2019
by
Robert Spencer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use arch packages for most of our plugins
pacman -S vim-airline vim-fugitive vim-gitgutter vim-syntastic
parent
5319ad7a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
35 deletions
+16
-35
README.md
README.md
+5
-15
vimrc
vimrc
+11
-20
No files found.
README.md
View file @
794ed1b7
## Clone the repository into your ~/.vim directory
cd
git clone https://gitlab.devlabs.linuxassist.net/allworldit/awit-vim-superawesome.git .vim
## Install the ViM RC file...
ln -s $HOME/.vim/vimrc $HOME/.vimrc
## You need to have vim.nox installed, this is a fully featured ViM for the commandline...
apt-get install -y vim.nox
git clone https://gitlab.devlabs.linuxassist.net/allworldit/awit-vim-superawesome.git .vim
## Install
fonts
## Install
packages we need...
apt-get install -y fonts-powerline
pacman -S vim-airline vim-fugitive vim-gitgutter vim-syntastic
## Fire up ViM and run these commands...
:PlugClean
:PlugInstall
...
...
@@ -32,7 +22,7 @@
## Set your terminal font to...
Liberation Mono
Liberation Mono
## Languages
...
...
vimrc
View file @
794ed1b7
...
...
@@ -81,23 +81,21 @@ call plug#begin('~/.vim/plugged')
Plug
'Shougo/neocomplete.vim'
" https
:
//
github
.
com
/Shougo/
neocomplete
.
vim
Plug
'Shougo/neosnippet'
" https
:
//
github
.
com
/Shougo/
neosnippet
Plug
'airblade/vim-gitgutter'
" https
:
//
github
.
com
/airblade/
vim
-
gitgutter
Plug
'ciaranm/securemodelines'
" https
:
//
github
.
com
/ciaranm/
securemodelines
Plug
'tpope/vim-fugitive'
" https
:
//
github
.
com
/tpope/
vim
-
fugitive
Plug
'vim-airline/vim-airline'
" https
:
//
github
.
com
/vim-airline/
vim
-
airline
Plug
'vim-syntastic/syntastic'
" https
:
//
github
.
com
/vim-syntastic/
syntastic
" vim-plug end
call
plug#end
()
"
"
Enable neocomplete
"
Plugin configuration
"
" neocomplete {
let
g:neocomplete
#enable_at_startup
=
1
" }
" neosnippet configuration {
"
" neosnippet configuration
" Enable snipMate compatibility feature, this loads all snippets/ from all
" plugins.
let
g:neosnippet
#enable_snipmate_compatibility
=
1
...
...
@@ -106,10 +104,6 @@ let g:neosnippet#enable_snipmate_compatibility = 1
let
g:neosnippet
#snippets_directory
=
'~/.vim/snippets'
let
g:neosnippet
#disable_runtime_snippets
=
{
'_'
:
1
}
"
" Configure neosnippets
"
" Plugin key-mappings
imap
<
C
-
k
>
<
Plug
>(
neosnippet_expand_or_jump
)
smap
<
C
-
k
>
<
Plug
>(
neosnippet_expand_or_jump
)
...
...
@@ -127,18 +121,15 @@ smap <expr><TAB> neosnippet#expandable_or_jumpable() ?
if
has
(
'conceal'
)
set
conceallevel
=
2
concealcursor
=
niv
endif
" }
"
" Configure vim-airline
"
"
syntastic {
let
g:syntastic_python_checkers
=
[
'python'
,
'pylama'
]
"
}
" vim-airline {
let
g:airline
#extensions#
tabline
#enabled
=
1
let
g:airline_powerline_fonts
=
1
"
" Configure syntastic
"
let
g:syntastic_python_checkers
=
[
'python'
,
'pylama'
]
" }
" vim: set filetype=vim expandtab shiftwidth=2 tabstop=2 :
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