We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2a1695 commit 9664fc4Copy full SHA for 9664fc4
init.lua
@@ -566,6 +566,8 @@ require('lazy').setup({
566
-- For example, in C this would take you to the header.
567
map('gD', vim.lsp.buf.declaration, '[G]oto [D]eclaration')
568
569
+ map('gDef', vim.lsp.buf.hover, '[G]oto [Def]inition')
570
+
571
-- Show LSP message
572
map('gM', vim.diagnostic.open_float, '[G]oto [M]essage')
573
lua/kickstart/plugins/lint.lua
@@ -7,6 +7,7 @@ return {
7
local lint = require 'lint'
8
lint.linters_by_ft = {
9
markdown = { 'markdownlint' },
10
+ python = { 'flake8' },
11
}
12
13
-- To allow other plugins to add linters to require('lint').linters_by_ft,
0 commit comments