@@ -155,6 +155,8 @@ vim.opt.scrolloff = 10
155
155
vim .opt .hlsearch = true
156
156
vim .keymap .set (' n' , ' <Esc>' , ' <cmd>nohlsearch<CR>' )
157
157
158
+ vim .g .python3_host_prog = ' ~/.pyenv/versions/3.12.0/bin/python3'
159
+
158
160
-- Diagnostic keymaps
159
161
vim .keymap .set (' n' , ' [d' , vim .diagnostic .goto_prev , { desc = ' Go to previous [D]iagnostic message' })
160
162
vim .keymap .set (' n' , ' ]d' , vim .diagnostic .goto_next , { desc = ' Go to next [D]iagnostic message' })
@@ -535,9 +537,10 @@ require('lazy').setup {
535
537
-- - settings (table): Override the default settings passed when initializing the server.
536
538
-- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
537
539
local servers = {
538
- -- clangd = {},
540
+ clangd = {},
539
541
-- gopls = {},
540
- -- pyright = {},
542
+ pyright = {},
543
+ -- mypy = {},
541
544
-- rust_analyzer = {},
542
545
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
543
546
--
@@ -736,21 +739,30 @@ require('lazy').setup {
736
739
end ,
737
740
},
738
741
742
+ {
743
+ ' rktjmp/lush.nvim' ,
744
+ },
745
+
739
746
{ -- You can easily change to a different colorscheme.
740
747
-- Change the name of the colorscheme plugin below, and then
741
748
-- change the command in the config to whatever the name of that colorscheme is
742
749
--
743
750
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`
744
- ' folke/tokyonight.nvim' ,
751
+ -- 'folke/tokyonight.nvim',
745
752
-- 'cocopon/iceberg.vim',
753
+ ' mcchrish/zenbones.nvim' ,
746
754
747
755
lazy = false , -- make sure we load this during startup if it is your main colorscheme
748
756
priority = 1000 , -- make sure to load this before all the other start plugins
749
757
config = function ()
750
758
-- Load the colorscheme here
751
- vim .cmd .colorscheme ' tokyonight-night'
759
+ -- vim.cmd.colorscheme 'tokyonight-night'
752
760
-- vim.cmd.colorscheme 'iceberg'
753
761
762
+ vim .cmd .colorscheme ' neobones'
763
+ vim .opt .termguicolors = true
764
+ vim .opt .background = ' dark'
765
+
754
766
-- You can configure highlights by doing something like
755
767
vim .cmd .hi ' Comment gui=none'
756
768
end ,
0 commit comments