-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.vim
65 lines (52 loc) · 1.04 KB
/
common.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
" Plugins will be downloaded under the specified directory.
call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')
" Declare the list of plugins.
Plug 'tpope/vim-sensible'
Plug 'junegunn/seoul256.vim'
Plug 'Numkil/ag.nvim'
" List ends here. Plugins become visible to Vim after this call.
call plug#end()
language en_UK
colo seoul256
set linespace=0
set fillchars=""
" UTF-8!
set encoding=utf-8
" Turn off menus, toolbars and scrollbars
set guioptions-=m
set guioptions-=T
set guioptions-=L
" Slashes in paths everywhere
" set shellslash
set cpoptions+=$
set backspace=indent,eol,start
set nowrap
set ruler
set showcmd
set showmode
set wildmenu
syntax on
set nobackup
set noswapfile
set laststatus=2
set cmdheight=2
set nocompatible
syntax on
set showmatch
set ignorecase
set hlsearch
set incsearch
set tabstop=4
set softtabstop=4
set expandtab
set shiftwidth=4
set autoindent
set number
set wildmode=longest,list
set cc=80
filetype plugin indent on
set mouse=a
set clipboard+=unnamedplus
filetype plugin on
set cursorline
set ttyfast