Skip to content

Commit

Permalink
removed annoying plugins and features
Browse files Browse the repository at this point in the history
  • Loading branch information
Taewoong Jang committed Nov 8, 2018
1 parent 44dca49 commit 150ce3a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 17 deletions.
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Changes

* removed auto-pair plugin
* removed undofile


---------------------

![VIM](https://dnp4pehkvoo6n.cloudfront.net/43c5af597bd5c1a64eb1829f011c208f/as/Ultimate%20Vimrc.svg)

# The Ultimate vimrc
Expand All @@ -6,7 +14,7 @@ Over the last 10 years, I have used and tweaked Vim. This configuration is the u

There are two versions:

* **The Basic**: If you want something small just copy [basic.vim](https://github.com/amix/vimrc/blob/master/vimrcs/basic.vim) into your ~/.vimrc and you will have a good basic setup
* **The Basic**: If you want something small just copy [basic.vim](https://github.com/twjang/vimrc/blob/master/vimrcs/basic.vim) into your ~/.vimrc and you will have a good basic setup
* **The Awesome**: Includes a ton of useful plugins, color schemes, and configurations

I would, of course, recommend using the awesome version.
Expand All @@ -16,13 +24,13 @@ I would, of course, recommend using the awesome version.
### Install for your own user only
The awesome version includes a lot of great plugins, configurations and color schemes that make Vim a lot better. To install it simply do following from your terminal:

git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime
git clone --depth=1 https://github.com/twjang/vimrc.git ~/.vim_runtime
sh ~/.vim_runtime/install_awesome_vimrc.sh

### Install for multiple users
To install for multiple users, the repository needs to be cloned to a location accessible for all the intended users.

git clone --depth=1 https://github.com/amix/vimrc.git /opt/vim_runtime
git clone --depth=1 https://github.com/twjang/vimrc.git /opt/vim_runtime
sh ~/.vim_runtime/install_awesome_parameterized.sh /opt/vim_runtime user0 user1 user2
# to install for all users with home directories
sh ~/.vim_runtime/install_awesome_parameterized.sh /opt/vim_runtime --all
Expand All @@ -40,11 +48,11 @@ Some other fonts that Awesome will try to use:

## How to install the Basic version?

The basic version is just one file and no plugins. Just copy [basic.vim](https://github.com/amix/vimrc/blob/master/vimrcs/basic.vim) and paste it into your vimrc.
The basic version is just one file and no plugins. Just copy [basic.vim](https://github.com/twjang/vimrc/blob/master/vimrcs/basic.vim) and paste it into your vimrc.

The basic version is useful to install on remote servers where you don't need many plugins, and you don't do many edits.

git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime
git clone --depth=1 https://github.com/twjang/vimrc.git ~/.vim_runtime
sh ~/.vim_runtime/install_basic_vimrc.sh


Expand Down
1 change: 0 additions & 1 deletion update_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

#--- Globals ----------------------------------------------
PLUGINS = """
auto-pairs https://github.com/jiangmiao/auto-pairs
ale https://github.com/w0rp/ale
vim-yankstack https://github.com/maxbrunsfeld/vim-yankstack
ack.vim https://github.com/mileszs/ack.vim
Expand Down
11 changes: 0 additions & 11 deletions vimrcs/extended.vim
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,6 @@ map <leader>e :e! ~/.vim_runtime/my_configs.vim<cr>
autocmd! bufwritepost ~/.vim_runtime/my_configs.vim source ~/.vim_runtime/my_configs.vim


"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Turn persistent undo on
" means that you can undo even when you close a buffer/VIM
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
try
set undodir=~/.vim_runtime/temp_dirs/undodir
set undofile
catch
endtry


"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Command mode related
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Expand Down

0 comments on commit 150ce3a

Please sign in to comment.