mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-07-23 12:16:38 +02:00
Added relative line numbers and more lsp
This commit is contained in:
parent
794918895a
commit
046e0b1477
1 changed files with 21 additions and 4 deletions
25
init.lua
25
init.lua
|
@ -230,6 +230,10 @@ vim.o.completeopt = 'menuone,noselect'
|
||||||
-- NOTE: You should make sure your terminal supports this
|
-- NOTE: You should make sure your terminal supports this
|
||||||
vim.o.termguicolors = true
|
vim.o.termguicolors = true
|
||||||
|
|
||||||
|
-- Set relative and absolute line numbers
|
||||||
|
vim.o.relativenumber = true
|
||||||
|
vim.o.number = true
|
||||||
|
|
||||||
-- [[ Basic Keymaps ]]
|
-- [[ Basic Keymaps ]]
|
||||||
|
|
||||||
-- Keymaps for better default experience
|
-- Keymaps for better default experience
|
||||||
|
@ -407,11 +411,24 @@ end
|
||||||
-- Add any additional override configuration in the following tables. They will be passed to
|
-- Add any additional override configuration in the following tables. They will be passed to
|
||||||
-- the `settings` field of the server config. You must look up that documentation yourself.
|
-- the `settings` field of the server config. You must look up that documentation yourself.
|
||||||
local servers = {
|
local servers = {
|
||||||
-- clangd = {},
|
clangd = {},
|
||||||
gopls = {},
|
gopls = {},
|
||||||
-- pyright = {},
|
solargraph = {},
|
||||||
-- rust_analyzer = {},
|
sqlls = {},
|
||||||
-- tsserver = {},
|
angularls = {},
|
||||||
|
bashls = {},
|
||||||
|
cssls = {},
|
||||||
|
dockerls = {},
|
||||||
|
gradle_ls = {},
|
||||||
|
pyright = {},
|
||||||
|
tsserver = {},
|
||||||
|
html = {},
|
||||||
|
jsonls = {},
|
||||||
|
jdtls = {},
|
||||||
|
rust_analyzer = {},
|
||||||
|
marksman = {},
|
||||||
|
volar = {},
|
||||||
|
yamlls = {},
|
||||||
|
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
Lua = {
|
Lua = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue