@@ -8,7 +8,7 @@ vim.g.maplocalleader = ' '
88vim .g .have_nerd_font = true
99
1010-- Set global theme
11- vim .g .theme = ' oxocarbon '
11+ vim .g .theme = ' adwaita '
1212
1313-- [[ Setting options ]]
1414-- See `:help vim.opt`
@@ -527,7 +527,7 @@ require('lazy').setup({
527527 -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
528528 local servers = {
529529 -- clangd = {},
530- -- gopls = {},
530+ gopls = {},
531531 pyright = {
532532 settings = {
533533 pyright = { autoImportCompletion = true },
@@ -782,39 +782,26 @@ require('lazy').setup({
782782 end ,
783783 },
784784
785- { -- You can easily change to a different colorscheme.
786- -- Change the name of the colorscheme plugin below, and then
787- -- change the command in the config to whatever the name of that colorscheme is.
788- --
789- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
790- ' folke/tokyonight.nvim' ,
791- priority = 1000 , -- Make sure to load this before all the other start plugins.
792- -- init = function()
793- -- -- Load the colorscheme here.
794- -- -- Like many other themes, this one has different styles, and you could load
795- -- -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
796- -- vim.cmd.colorscheme 'tokyonight-night'
797- --
798- -- -- You can configure highlights by doing something like:
799- -- vim.cmd.hi 'Comment gui=none'
800- -- end,
801- },
802785 {
803- ' Mofiqul/adwaita .nvim' ,
786+ ' nyoom-engineering/oxocarbon .nvim' ,
804787 lazy = false ,
805788 priority = 1000 ,
806789 config = function ()
807790 vim .cmd .colorscheme (vim .g .theme )
808791 end ,
809792 },
793+
810794 {
811- ' uloco/bluloco .nvim' ,
795+ ' nyoom-engineering/oxocarbon .nvim' ,
812796 lazy = false ,
813797 priority = 1000 ,
814- dependencies = { ' rktjmp/lush.nvim' },
798+ config = function ()
799+ vim .cmd .colorscheme (vim .g .theme )
800+ end ,
815801 },
802+
816803 {
817- ' nyoom-engineering/oxocarbon .nvim' ,
804+ ' Mofiqul/adwaita .nvim' ,
818805 lazy = false ,
819806 priority = 1000 ,
820807 },
@@ -840,6 +827,22 @@ require('lazy').setup({
840827 require (' mini.surround' ).setup ()
841828
842829 require (' mini.icons' ).setup ()
830+
831+ -- Simple and easy statusline.
832+ -- You could remove this setup call if you don't like it,
833+ -- and try some other statusline plugin
834+ local statusline = require ' mini.statusline'
835+ -- set use_icons to true if you have a Nerd Font
836+ statusline .setup { use_icons = vim .g .have_nerd_font }
837+
838+ -- You can configure sections in the statusline by overriding their
839+ -- default behavior. For example, here we set the section for
840+ -- cursor location to LINE:COLUMN
841+ --- @diagnostic disable-next-line : duplicate-set-field
842+ statusline .section_location = function ()
843+ return ' %2l:%-2v'
844+ end
845+
843846 -- ... and there is more!
844847 -- Check out: https://github.com/echasnovski/mini.nvim
845848 end ,
@@ -905,7 +908,7 @@ require('lazy').setup({
905908 -- This is the easiest way to modularize your config.
906909 --
907910 -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
908- -- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
911+ -- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
909912 { import = ' custom.plugins' },
910913}, {
911914 ui = {
@@ -931,6 +934,7 @@ require('lazy').setup({
931934
932935-- Setup python provider
933936vim .g .python3_host_prog = ' $HOME/.asdf/shims/python'
937+ vim .g .python_host_prog = ' $HOME/.asdf/shims/python'
934938
935939-- The line beneath this is called `modeline`. See `:help modeline`
936940-- vim: ts=2 sts=2 sw=2 et
0 commit comments