mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
Added language servers to nvim
This commit is contained in:
4
Makefile
4
Makefile
@@ -34,9 +34,11 @@ bootstrap-app-store:
|
|||||||
--debug \
|
--debug \
|
||||||
--file "$(PWD)/macOS/.config/macOS/AppStore.Brewfile"
|
--file "$(PWD)/macOS/.config/macOS/AppStore.Brewfile"
|
||||||
|
|
||||||
|
bootstrap-non-brews: bootstrap-logitech bootstrap-amazon-workdocs
|
||||||
|
|
||||||
stow:
|
stow:
|
||||||
@stow --stow --verbose --target ~ */
|
@stow --stow --verbose --target ~ */
|
||||||
|
|
||||||
# Order matters, need to install home-brew first then formula
|
# Order matters, need to install home-brew first then formula
|
||||||
bootstrap: bootstrap-homebrew bootstrap-brews stow bootstrap-logitech bootstrap-amazon-workdocs bootstrap-app-store
|
bootstrap: bootstrap-homebrew bootstrap-brews bootstrap-casks stow bootstrap-non-brews bootstrap-app-store
|
||||||
open ~/Downloads
|
open ~/Downloads
|
||||||
|
|||||||
14
README.md
14
README.md
@@ -87,12 +87,18 @@ It is also possible to not do the full bootstrapping. If you would only like to
|
|||||||
make bootstrap-homebrew
|
make bootstrap-homebrew
|
||||||
```
|
```
|
||||||
|
|
||||||
Once homebrew is installed, if you'd like to install the homebrew formula and casks (located in `macOS/.config/macOS/Brewfile`) then you can run the following command.
|
Once homebrew is installed, if you'd like to install the homebrew formula (located in `macOS/.config/macOS/Brewfile`) then you can run the following command.
|
||||||
|
|
||||||
```
|
```
|
||||||
make bootstrap-brews
|
make bootstrap-brews
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To install homebrew casks (located in `macOS/.config/macOS/Casks.Brewfile`) then you can run the following command.
|
||||||
|
|
||||||
|
```
|
||||||
|
make bootstrap-casks
|
||||||
|
```
|
||||||
|
|
||||||
To symlink the configuration files only then you can run.
|
To symlink the configuration files only then you can run.
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -105,6 +111,12 @@ To download the logitech options application and place in your `~/Downloads` fol
|
|||||||
make bootstrap-logitech
|
make bootstrap-logitech
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To download the amazon workdocs drive installer and place in your `~/Downloads` folder, you can run.
|
||||||
|
|
||||||
|
```
|
||||||
|
make bootstrap-amazon-workdocs
|
||||||
|
```
|
||||||
|
|
||||||
And finally to download the app store applications run.
|
And finally to download the app store applications run.
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ o.scrolloff = 3 -- Minimal number of screen lines to keep above and below the cu
|
|||||||
o.sidescrolloff = 5 -- The minimal number of columns to scroll horizontally
|
o.sidescrolloff = 5 -- The minimal number of columns to scroll horizontally
|
||||||
o.hlsearch = true -- highlight all matches on previous search pattern
|
o.hlsearch = true -- highlight all matches on previous search pattern
|
||||||
o.ignorecase = true -- ignore case in search patterns
|
o.ignorecase = true -- ignore case in search patterns
|
||||||
o.foldenable = false -- disable folding; enable with zi
|
o.foldenable = true -- disable folding; enable with zi
|
||||||
o.foldmethod = "expr"
|
o.foldmethod = "expr"
|
||||||
o.foldexpr = "nvim_treesitter#foldexpr()"
|
o.foldexpr = "nvim_treesitter#foldexpr()"
|
||||||
-- o.listchars = "eol:¬,tab:>·,trail:~,extends:>,precedes:<"
|
-- o.listchars = "eol:¬,tab:>·,trail:~,extends:>,precedes:<"
|
||||||
|
|||||||
Reference in New Issue
Block a user