Skip to content

Commit 0f70525

Browse files
committed
Fixes
1 parent e01ca43 commit 0f70525

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

init.lua

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,8 @@ vim.opt.scrolloff = 10
155155
vim.opt.hlsearch = true
156156
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
157157

158+
vim.g.python3_host_prog = '~/.pyenv/versions/3.12.0/bin/python3'
159+
158160
-- Diagnostic keymaps
159161
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous [D]iagnostic message' })
160162
vim.keymap.set('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next [D]iagnostic message' })
@@ -535,9 +537,10 @@ require('lazy').setup {
535537
-- - settings (table): Override the default settings passed when initializing the server.
536538
-- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
537539
local servers = {
538-
-- clangd = {},
540+
clangd = {},
539541
-- gopls = {},
540-
-- pyright = {},
542+
pyright = {},
543+
--mypy = {},
541544
-- rust_analyzer = {},
542545
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
543546
--
@@ -736,21 +739,30 @@ require('lazy').setup {
736739
end,
737740
},
738741

742+
{
743+
'rktjmp/lush.nvim',
744+
},
745+
739746
{ -- You can easily change to a different colorscheme.
740747
-- Change the name of the colorscheme plugin below, and then
741748
-- change the command in the config to whatever the name of that colorscheme is
742749
--
743750
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`
744-
'folke/tokyonight.nvim',
751+
-- 'folke/tokyonight.nvim',
745752
-- 'cocopon/iceberg.vim',
753+
'mcchrish/zenbones.nvim',
746754

747755
lazy = false, -- make sure we load this during startup if it is your main colorscheme
748756
priority = 1000, -- make sure to load this before all the other start plugins
749757
config = function()
750758
-- Load the colorscheme here
751-
vim.cmd.colorscheme 'tokyonight-night'
759+
-- vim.cmd.colorscheme 'tokyonight-night'
752760
-- vim.cmd.colorscheme 'iceberg'
753761

762+
vim.cmd.colorscheme 'neobones'
763+
vim.opt.termguicolors = true
764+
vim.opt.background = 'dark'
765+
754766
-- You can configure highlights by doing something like
755767
vim.cmd.hi 'Comment gui=none'
756768
end,

lua/custom/plugins/init.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,7 @@ return {
1515
persist_mode = true,
1616
},
1717
},
18+
{
19+
'nvim-treesitter/nvim-treesitter-context'
20+
},
1821
}

0 commit comments

Comments
 (0)