[MacPorts] #55307: vim @8.0.1207_0+huge+python27+python35+ruby+ruby18+x11: Clipboard support not working
MacPorts
noreply at macports.org
Mon Nov 13 23:31:11 UTC 2017
#55307: vim @8.0.1207_0+huge+python27+python35+ruby+ruby18+x11: Clipboard support
not working
------------------------------+----------------------
Reporter: rubendibattista | Owner: raimue
Type: defect | Status: assigned
Priority: Normal | Milestone:
Component: ports | Version: 2.4.2
Resolution: | Keywords:
Port: vim |
------------------------------+----------------------
Comment (by rubendibattista):
Maybe related to some plugin?
{{{
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
" Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
" Plugin 'L9'
" Git plugin not hosted on GitHub
" Plugin 'git://git.wincent.com/command-t.git'
" git repos on your local machine (i.e. when working on your own plugin)
" Plugin 'file:///home/gmarik/path/to/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
" Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Install L9 and avoid a Naming conflict if you've already installed a
" different version somewhere else.
" Plugin 'ascenator/L9', {'name': 'newL9'}
"-------------- PLUGIN ENABLED START HERE ----------------
" Nice coloring
Plugin 'altercation/vim-colors-solarized'
" Sensible Config for vim
Plugin 'tpope/vim-sensible'
" Vim Jinja
Plugin 'Glench/Vim-Jinja2-Syntax'
" Python Mode
Plugin 'python-mode/python-mode'
"Syntastic
Plugin 'vim-syntastic/syntastic'
"SimpylFold
Plugin 'tmhedberg/SimpylFold'
" Track the engine.
Plugin 'SirVer/ultisnips'
" Snippets are separated from the engine. Add this if you want them:
Plugin 'honza/vim-snippets'
" Powerline
Plugin 'powerline/powerline', {'rtp': 'powerline/bindings/vim/'}
" Emmet HTML
Plugin 'mattn/emmet-vim'
"scrooloose/nerdtree
Plugin 'scrooloose/nerdtree'
" Match html tags
Plugin 'Valloric/MatchTagAlways'
" Autocomplete
Plugin 'Valloric/YouCompleteMe'
" LaTeX
Plugin 'lervag/vimtex'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just
:PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to
auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
"
"
"
" ==== General Configuration ===
"English Language
let $LANG = 'en_US'
set backspace=indent,eol,start
set nocompatible " be iMproved, required
filetype off " required
set mouse=a " Mouse mode
syntax enable " Syntax Coloring
set background=dark "
silent! colorscheme solarized
"Shortkey for NerdTree
map <C-n> :NERDTreeToggle<CR>
"Powerline always on
set laststatus=2
"Spaces instead of tabs
set expandtab
set tabstop=4
set shiftwidth=4
"Colocolumn
set colorcolumn=79
"==== YouCompleteMe ====
let g:ycm_server_python_interpreter = '/opt/local/bin/python'
"==== Python Mode ====
let g:pymode_rope_completion = 0
let g:pymode_rope_complete_on_dot = 0
let g:pymode_folding = 0
"==== UltiSnips =====
" Trigger configuration. Do not use <tab> if you use
https://github.com/Valloric/YouCompleteMe.
let g:UltiSnipsExpandTrigger="<c-j>"
let g:UltiSnipsJumpForwardTrigger="<c-w>"
let g:UltiSnipsJumpBackwardTrigger="<c-b>"
let g:UltiSnipsEditSplit="vertical"
"=== Syntastic ====
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_mode_map = { "passive_filetypes": ["python"] }
}}}
--
Ticket URL: <https://trac.macports.org/ticket/55307#comment:4>
MacPorts <https://www.macports.org/>
Ports system for macOS
More information about the macports-tickets
mailing list