Linux 下 vim 开发 js 的配置,大家可以晒出自己的 vim 配置

2019-05-18 17:01:10 +08:00
 myliang
set nocompatible              " be iMproved, required
filetype off                  " required

" 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 'tomasr/molokai'
" Plugin 'altercation/vim-colors-solarized'
Plugin 'kien/ctrlp.vim'
Plugin 'easymotion/vim-easymotion'
Plugin 'nathanaelkane/vim-indent-guides'
Plugin 'Lokaltog/vim-powerline'
" Plugin 'posva/vim-vue'
" Plugin 'vim-syntastic/syntastic'

" 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

set nocompatible   " Disable vi-compatibility
set laststatus=2   " Always show the statusline
set encoding=utf-8 " Necessary to show Unicode glyphs
set t_Co=256 " Explicitly tell Vim that the terminal supports 256 colors
set ts=2 sw=2 
set et nu hlsearch cursorline 

" molokai
" syntax enable
syntax on
set background=dark
" let g:molokai_original = 0
colorscheme molokai
highlight Normal ctermbg=NONE
highlight nonText ctermbg=NONE
highlight Visual ctermbg=darkgrey 

" eslint
" set statusline+=%#warningmsg#
" set statusline+=%{SyntasticStatuslineFlag()}
" set statusline+=%*
" 
" " let g:syntastic_always_populate_loc_list = 1
" let g:syntastic_auto_loc_list = 1
" let g:syntastic_check_on_open = 1
" let g:syntastic_check_on_wq = 0
" let g:syntastic_javascript_checkers = ['eslint']
" let g:syntastic_javascript_eslint_exec = './node_modules/eslint/bin/eslint.js'
" let g:syntastic_javascript_eslint_exe = 'npm run lint --'
" let g:ctrlp_root_markers = ['.gitignore']
let g:ctrlp_custom_ignore = {
  \ 'dir':  '\v[\/]\.(git|hg|svn)|node_modules|dist|docs$',
  \ 'file': '\v\.(exe|so|dll)$',
  \ 'link': 'some_bad_symbolic_links',
  \ }

" indent
let g:indent_guides_start_level = 2
let g:indent_guides_enable_on_vim_startup = 1
let g:indent_guides_guide_size = 1

" easymotion
let g:EasyMotion_do_mapping = 0 " Disable default mappings

" s{char}{char} to move to {char}{char}
nmap s <Plug>(easymotion-overwin-f2)

3024 次点击
所在节点    程序员
16 条回复
Aumujun
2019-05-18 17:18:15 +08:00
ahonn
2019-05-18 17:20:45 +08:00
https://github.com/ahonn/dotfiles/tree/master/vim

仓库里还有 tmux / fish / hammerspoon 之类的配置
577322753
2019-05-18 17:52:37 +08:00
vscode 是收费了吗?费这劲
PTLin
2019-05-18 18:01:19 +08:00
Vundle 已经过时了,现在 vim-plug 是好的替代品,主题推荐 space-vim-dark 和 gruvbox,补全我不写 js,不过你可以了解一下 coc.nvim,特别棒的补全插件,基本所有功能都有,powerline 也被 airline 比下去了。
PTLin
2019-05-18 18:03:33 +08:00
@577322753 折腾 vim 蛮有意思的,当作日常娱乐也是不错的。
wsgws
2019-05-18 18:11:18 +08:00
ThomasZ
2019-05-18 18:13:22 +08:00
已经站到 vscode 的阵营了。。。
myliang
2019-05-18 19:10:50 +08:00
@577322753 vscode 也使用
myliang
2019-05-18 19:13:38 +08:00
@PTLin 能满足我的需求就行,自动补全我不使用 airline 的样式不是我喜欢的东西呵呵
justin2018
2019-05-18 22:21:49 +08:00
SpaceVim 😅用别人弄好的~~
Aumujun
2019-05-18 22:39:02 +08:00
最烦在 vim 帖子下面那些回复 vscode, intelij 之类的言论, 你们点进来干嘛
sw0rd3n
2019-05-18 23:11:36 +08:00
CodingNaux
2019-05-19 09:11:10 +08:00
vim 是 hard 模式 vscode 是 easy 模式
我选 vscode😂
jeffhuen
2019-05-19 10:03:22 +08:00
之前我也折腾过 vim,实在是太累了,就只好去折腾自带 vim 模式的 sublime 更方便一些😁
beginor
2019-05-19 11:14:06 +08:00
我觉得 nano 更容易让人接受一点, 一般发行版都带上了
leoatchina
2019-05-19 13:27:12 +08:00

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/565365

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX