|
|
|
@ -92,7 +92,6 @@ I hope you enjoy your Neovim journey,
|
|
|
|
|
P.S. You can delete this when you're done too. It's your config now! :)
|
|
|
|
|
--]]
|
|
|
|
|
vim.api.nvim_set_keymap('n', ':', '<cmd>FineCmdline<CR>', { noremap = true })
|
|
|
|
|
vim.cmd [[ autocmd VimEnter * Neotree position=left ]]
|
|
|
|
|
--AUTO RELOAD ON SAVE
|
|
|
|
|
vim.api.nvim_create_autocmd('BufWritePost', {
|
|
|
|
|
pattern = '*', -- For all files
|
|
|
|
@ -1084,7 +1083,7 @@ require('lazy').setup({
|
|
|
|
|
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
|
|
|
|
|
|
|
|
|
-- vim.cmd.colorscheme 'tokyonight-night'
|
|
|
|
|
vim.cmd.colorscheme 'ash'
|
|
|
|
|
vim.cmd.colorscheme 'shin'
|
|
|
|
|
-- vim.cmd.colorscheme 'kanagawa'
|
|
|
|
|
-- vim.cmd.colorscheme 'material-palenight'
|
|
|
|
|
-- vim.cmd.colorscheme 'material-deep-ocean'
|
|
|
|
@ -1121,17 +1120,17 @@ require('lazy').setup({
|
|
|
|
|
-- Simple and easy statusline.
|
|
|
|
|
-- You could remove this setup call if you don't like it,
|
|
|
|
|
-- and try some other statusline plugin
|
|
|
|
|
local statusline = require 'mini.statusline'
|
|
|
|
|
-- local statusline = require 'mini.statusline'
|
|
|
|
|
-- set use_icons to true if you have a Nerd Font
|
|
|
|
|
statusline.setup { use_icons = vim.g.have_nerd_font }
|
|
|
|
|
-- statusline.setup { use_icons = vim.g.have_nerd_font }
|
|
|
|
|
|
|
|
|
|
-- You can configure sections in the statusline by overriding their
|
|
|
|
|
-- default behavior. For example, here we set the section for
|
|
|
|
|
-- cursor location to LINE:COLUMN
|
|
|
|
|
---@diagnostic disable-next-line: duplicate-set-field
|
|
|
|
|
statusline.section_location = function()
|
|
|
|
|
return '%2l:%-2v'
|
|
|
|
|
end
|
|
|
|
|
-- statusline.section_location = function()
|
|
|
|
|
-- return '%2l:%-2v'
|
|
|
|
|
-- end
|
|
|
|
|
|
|
|
|
|
-- ... and there is more!
|
|
|
|
|
-- Check out: https://github.com/echasnovski/mini.nvim
|
|
|
|
|