Update regarding setlocal

This commit is contained in:
Elnu 2022-06-14 12:09:53 -07:00
parent de1f02bbe3
commit 485ad593c5

View file

@ -36,9 +36,16 @@ Most Vim configurations are done in the users `~/.vimrc` file, which applies
Inside this file, add the following: Inside this file, add the following:
```VIM ```VIM
set linebreak setlocal linebreak
``` ```
We want to use `setlocal` (or its shorthand `setl`) over the usual `set` because this only sets `linebreak` on the current buffer. If we have multiple files open in Vim, we want to make sure that this setting only applies to open Markdown files.
<details>
<summary>Thanks to <a href="https://www.reddit.com/user/habamax/">u/habamax</a> for pointing this out!</summary>
<iframe id="reddit-embed" src="https://www.redditmedia.com/r/vim/comments/vc9oi2/how_to_configure_vim_for_writing/iccz7kq/?depth=1&amp;showmore=false&amp;embed=true&amp;showmedia=false" sandbox="allow-scripts allow-same-origin allow-popups" style="border: none;" scrolling="no" width="640" height="233"></iframe>
</details><br>
And youre done! Vim will now no longer split words across soft-wrapped lines. Now, lets move on to typographic quotes. And youre done! Vim will now no longer split words across soft-wrapped lines. Now, lets move on to typographic quotes.
## Typographic quotes ## Typographic quotes
@ -48,7 +55,6 @@ Vim doesnt have any native support for typographic quotes, so well need to
Now that we have a package manager for Vim installed, we need to install the plugin itself. Open your `~/.vimrc`, or create it if it doesnt exist yet, and add the following: Now that we have a package manager for Vim installed, we need to install the plugin itself. Open your `~/.vimrc`, or create it if it doesnt exist yet, and add the following:
```VIM ```VIM
set nocompatible
filetype off filetype off
set rtp+=~/.vim/bundle/Vundle.vim set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin() call vundle#begin()