Skip to content

Commit eb3a539

Browse files
fixed pyright issues
1 parent fd2bfea commit eb3a539

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

init.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ vim.g.have_nerd_font = false
102102
vim.opt.number = true
103103
-- You can also add relative line numbers, to help with jumping.
104104
-- Experiment for yourself to see if you like it!
105-
-- vim.opt.relativenumber = true
105+
vim.opt.relativenumber = true
106106

107107
-- Enable mouse mode, can be useful for resizing splits for example!
108108
vim.opt.mouse = 'a'
@@ -661,6 +661,7 @@ require('lazy').setup({
661661
clangd = {
662662
cmd = {
663663
'clangd',
664+
'--compile-commands-dir=build',
664665
'--background-index', -- build a background index for faster navigation
665666
'--clang-tidy', -- run clang-tidy for linting (if you have clang-tidy installed)
666667
'--completion-style=detailed', -- more detailed auto-completion suggestions
@@ -1047,6 +1048,7 @@ require('lazy').setup({
10471048
vim.keymap.set('n', '<leader>e', ':Neotree toggle<CR>', { desc = 'Toggle Neo-tree File Explorer' })
10481049
end,
10491050
},
1051+
{},
10501052
}, {
10511053
ui = {
10521054
-- If you are using a Nerd Font: set icons to an empty table which will use the

0 commit comments

Comments
 (0)