Переместил хлам в trash, переименовал ansible-base в base-system, добавил добавление юзера и группы, а также правку sudoers, сделал возможность запуска base-system не от рута
This commit is contained in:
40
ansible/base-system/roles/coding_vim/files/vimrc
Normal file
40
ansible/base-system/roles/coding_vim/files/vimrc
Normal file
@@ -0,0 +1,40 @@
|
||||
set nocompatible " be iMproved, required
|
||||
filetype off " required
|
||||
|
||||
"=====================================================
|
||||
" Vundle settings
|
||||
"=====================================================
|
||||
" set the runtime path to include Vundle and initialize
|
||||
set rtp+=~/.vim/bundle/Vundle.vim
|
||||
call vundle#begin()
|
||||
|
||||
Plugin 'gmarik/Vundle.vim' " let Vundle manage Vundle, required
|
||||
|
||||
"---------=== Code/project navigation ===-------------
|
||||
Plugin 'scrooloose/nerdtree' " Project and file navigation
|
||||
Plugin 'majutsushi/tagbar' " Class/module browser
|
||||
|
||||
"------------------=== Other ===----------------------
|
||||
Plugin 'bling/vim-airline' " Lean & mean status/tabline for vim
|
||||
Plugin 'fisadev/FixedTaskList.vim' " Pending tasks list
|
||||
Plugin 'rosenfeld/conque-term' " Consoles as buffers
|
||||
Plugin 'tpope/vim-surround' " Parentheses, brackets, quotes, XML tags, and more
|
||||
|
||||
"--------------=== Snippets support ===---------------
|
||||
"Plugin 'garbas/vim-snipmate' " Snippets manager
|
||||
Plugin 'MarcWeber/vim-addon-mw-utils' " dependencies #1
|
||||
Plugin 'tomtom/tlib_vim' " dependencies #2
|
||||
Plugin 'honza/vim-snippets' " snippets repo
|
||||
|
||||
"---------------=== Languages support ===-------------
|
||||
" --- Python ---
|
||||
Plugin 'klen/python-mode' " Python mode (docs, refactor, lints, highlighting, run and ipdb and more)
|
||||
Plugin 'davidhalter/jedi-vim' " Jedi-vim autocomplete plugin
|
||||
Plugin 'mitsuhiko/vim-jinja' " Jinja support for vim
|
||||
Plugin 'mitsuhiko/vim-python-combined' " Combined Python 2/3 for Vim
|
||||
|
||||
call vundle#end() " required
|
||||
filetype on
|
||||
filetype plugin on
|
||||
filetype plugin indent on
|
||||
|
||||
Reference in New Issue
Block a user