Skip to content

Commit a5ae44c

Browse files
Merge branch 'nvim-lua:master' into master
2 parents dad3f32 + 4120893 commit a5ae44c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ examples of adding popularly requested plugins.
130130
`~/.local/share/nvim-kickstart`. You can apply this approach to any Neovim
131131
distribution that you would like to try out.
132132
* What if I want to "uninstall" this configuration:
133-
* See [lazy.nvim uninstall](https://github.com/folke/lazy.nvim#-uninstalling) information
133+
* See [lazy.nvim uninstall](https://lazy.folke.io/usage#-uninstalling) information
134134
* Why is the kickstart `init.lua` a single file? Wouldn't it make sense to split it into multiple files?
135135
* The main purpose of kickstart is to serve as a teaching tool and a reference
136136
configuration that someone can easily use to `git clone` as a basis for their own.

init.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -614,8 +614,8 @@ require('lazy').setup({
614614
-- Some languages (like typescript) have entire language plugins that can be useful:
615615
-- https://github.com/pmizio/typescript-tools.nvim
616616
--
617-
-- But for many setups, the LSP (`tsserver`) will work just fine
618-
-- tsserver = {},
617+
-- But for many setups, the LSP (`ts_ls`) will work just fine
618+
-- ts_ls = {},
619619
--
620620

621621
lua_ls = {
@@ -656,7 +656,7 @@ require('lazy').setup({
656656
local server = servers[server_name] or {}
657657
-- This handles overriding only values explicitly passed
658658
-- by the server configuration above. Useful when disabling
659-
-- certain features of an LSP (for example, turning off formatting for tsserver)
659+
-- certain features of an LSP (for example, turning off formatting for ts_ls)
660660
server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {})
661661
require('lspconfig')[server_name].setup(server)
662662
end,

0 commit comments

Comments
 (0)