aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamjan 9000 <damjan.9000@gmail.com>2024-03-04 17:02:12 +0100
committerDamjan 9000 <damjan.9000@gmail.com>2024-03-04 17:02:12 +0100
commit0ff7758cf4a39aa868fc72b7c93fb812c7397c7a (patch)
treeb7226ddbd8b55b1fe73086bef42b4a0f8dd89ec0
parent09093d4d90edf4596316e5169198fea0be8f8b26 (diff)
parentb83b2b061c1fab0e1a3a28c185345be7957e74cd (diff)
Merge 'upstream/master' cursor location, trailing spaces, new youtube video
Change statusline location to LINE:COLUMN chore: remove trailing spaces from readme chore: link new installation youtube video
-rw-r--r--README.md10
-rw-r--r--lua/kickstart/plugins/mini.lua6
2 files changed, 6 insertions, 10 deletions
diff --git a/README.md b/README.md
index 5af6aca..c2188c9 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ If you are experiencing issues, please make sure you have the latest versions.
### Install External Dependencies
-> **NOTE**
+> **NOTE**
> [Backup](#FAQ) your previous configuration (if any exists)
External Requirements:
@@ -89,9 +89,7 @@ information about extending and exploring Neovim.
### Getting Started
-See [Effective Neovim: Instant IDE](https://youtu.be/stqUbv-5u2s), covering the
-previous version. Note: The install via init.lua is outdated, please follow the
-install instructions in this file instead. An updated video is coming soon.
+[The Only Video You Need to Get Started with Neovim](https://youtu.be/m8C0Cq9Uv9o)
### Recommended Steps
@@ -99,7 +97,7 @@ install instructions in this file instead. An updated video is coming soon.
(so that you have your own copy that you can modify) and then installing you
can install to your machine using the methods above.
-> **NOTE**
+> **NOTE**
> Your fork's url will be something like this: `https://github.com/<your_github_username>/kickstart-modular.nvim.git`
#### Examples of adding popularly requested plugins
@@ -219,5 +217,3 @@ choco install -y neovim git ripgrep wget fd unzip gzip mingw make
```
Then continue with the [Install Kickstart](#Install-Kickstart) step.
-
-
diff --git a/lua/kickstart/plugins/mini.lua b/lua/kickstart/plugins/mini.lua
index 7c5026d..94de556 100644
--- a/lua/kickstart/plugins/mini.lua
+++ b/lua/kickstart/plugins/mini.lua
@@ -24,11 +24,11 @@ return {
statusline.setup()
-- You can configure sections in the statusline by overriding their
- -- default behavior. For example, here we disable the section for
- -- cursor information because line numbers are already enabled
+ -- 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 ''
+ return '%2l:%-2v'
end
-- ... and there is more!