@@ -102,7 +102,7 @@ vim.g.have_nerd_font = false
102102vim .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!
108108vim .opt .mouse = ' a'
@@ -614,7 +614,7 @@ require('lazy').setup({
614614 -- - settings (table): Override the default settings passed when initializing the server.
615615 -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
616616 local servers = {
617- -- clangd = {},
617+ clangd = {},
618618 -- gopls = {},
619619 -- pyright = {},
620620 -- rust_analyzer = {},
@@ -626,6 +626,8 @@ require('lazy').setup({
626626 -- But for many setups, the LSP (`ts_ls`) will work just fine
627627 -- ts_ls = {},
628628 --
629+ -- EIGENE:
630+ jdtls = {},
629631
630632 lua_ls = {
631633 -- cmd = {...},
@@ -833,23 +835,23 @@ require('lazy').setup({
833835 end ,
834836 },
835837
836- { -- You can easily change to a different colorscheme.
837- -- Change the name of the colorscheme plugin below, and then
838- -- change the command in the config to whatever the name of that colorscheme is.
839- --
840- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
841- ' folke/tokyonight.nvim' ,
842- priority = 1000 , -- Make sure to load this before all the other start plugins.
843- init = function ()
844- -- Load the colorscheme here.
845- -- Like many other themes, this one has different styles, and you could load
846- -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
847- vim .cmd .colorscheme ' tokyonight-night'
848-
849- -- You can configure highlights by doing something like:
850- vim .cmd .hi ' Comment gui=none'
851- end ,
852- },
838+ -- { -- You can easily change to a different colorscheme.
839+ -- -- Change the name of the colorscheme plugin below, and then
840+ -- -- change the command in the config to whatever the name of that colorscheme is.
841+ -- --
842+ -- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
843+ -- 'folke/tokyonight.nvim',
844+ -- priority = 1000, -- Make sure to load this before all the other start plugins.
845+ -- init = function()
846+ -- -- Load the colorscheme here.
847+ -- -- Like many other themes, this one has different styles, and you could load
848+ -- -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
849+ -- vim.cmd.colorscheme 'tokyonight-night'
850+ --
851+ -- -- You can configure highlights by doing something like:
852+ -- -- vim.cmd.hi 'Comment gui=none'
853+ -- end,
854+ -- },
853855
854856 -- Highlight todo, notes, etc in comments
855857 { ' folke/todo-comments.nvim' , event = ' VimEnter' , dependencies = { ' nvim-lua/plenary.nvim' }, opts = { signs = false } },
0 commit comments