ICode9

精准搜索请尝试: 精确搜索
  • 安装YoucompleteMe, Mysql遇到的坑2022-05-19 21:36:24

      昨天更新ubunt的时候不管是命令行还是gui都不能更新,0update,人都傻了,最后发现ubunt16.04太老了要更新只能重新下载。   mysql重新装,初始的时候密码不正确 使用sskip-grant-tables  加到mysql的配置文件 里面   我的配置是/etc/mysql/mysql.conf.d/mysqld.conf 网上很多说

  • vim 编译使用ycm启动问题 fixed2021-09-17 16:33:32

    YouCompleteMe unavailable: requires Vim compiled with Python (2.7 or 3.4+) support. 在ubuntu环境上 vim编译 也加了启用python但还有问题             ./configure --with-features=huge \                 --enable-multibyte \                 -

  • 【vim】vim插件教程2021-09-12 16:03:47

    vim 插件下载地址: https://github.com/chxuan/vimplus   错误: The ycmd server SHUT DOWN (restart with ':YcmRestartServer'). YCM core library not detected; you need to compile YCM before usin g it. Follow the instructions in the documentation.    解决: 在

  • 新建sh文件自动添加文件头/vimrc文件修改2021-09-12 11:33:20

    #自己改了改vim开头文件,如下图# 友友们可以直接修改·SetTitle()   if v:lang =~ "utf8$" || v:lang =~ "UTF-8$"set fileencodings=ucs-bom,utf-8,latin1endif set nocompatible " Use Vim defaults (much better!)set bs=indent,eol,start " allow backspacing ov

  • 可能是最简单的YCM配置文~2021-06-27 17:03:49

    可能是最简单的YCM配置文~ 超级简便的安装~ YouCompleteMe安装前先检查自己的vim版本、python版本与cmake版本 YouCompleteMe需要: vim 8.1+;cmake3.15+;python3.5+; cmake安装可参考本人的另一篇博客: Ubuntu下的cmake自选版本安装 一切就绪,准备安装。 网上有各种各样的相关安装教程

  • 安装YCM2021-05-20 10:33:25

    安装Vundle git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim Vundle也是vim的插件,所以放到~/.vim/bundle/下。 安装环境 # install CMake sudo apt-get install build-essential cmake # install Python sudo apt-get install python-dev pytho

  • vim 常用配置2021-04-27 10:31:12

    编译 vim 8.2 git clone https://github.com/vim/vim.git cd vim ./configure --enable-python3interp --with-x --prefix=/usr/local make -j sudo make install ./src/vim --version 输出类似如下, 确保 +python3 和 +clipboard 使能 /src/vim --version VIM - Vi IMprove

  • VIM配置【增量更新】2019-09-16 13:51:32

    自己的vim配置 "HELP"key bindings:"<F1>: HELP vimdoc "<F2>: Toggle: NERDTreeToggle"<F4>: autoformat - yapf"<F7>: Toggle: linenumber"<F8> :Toggle: TagbarToggle "<F11>:Toggle: paste mod

  • [转] 把vim配置成顺手的python轻量级IDE2019-07-18 11:57:11

    nice~ from https://www.jianshu.com/p/f0513d18742a 一、配置文件 基础配置 vim的所有配置都是在 ~/.vimrc 这个文件中完成。默认是没有的需要自己新建: cd ~touch .vimrcvim .vimrc 以下是我个人的.vimrc文件的基础配置部分,双引号内为注释内容: "去掉vi的一致性"set nocompa

  • vimrc 配置文件2019-06-02 09:52:27

    有一些配置是抄过来的,我没仔细搞过是为什么,但是用起来比以前好一些,可以大概看到有几个模块,vim-go  ,ycm(自动补全的),   set nu set ts=4set rulerset autoindentset cindentset shiftwidth=4set softtabstop=4set tabstop=4 " Specify a directory for plugins" - For Neovim: ~

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有