Hello, fellow text editor enthusiasts. Welcome to Abstract Symphony, meaning of which, nobody knows and has nothing to do with the post's agenda.
You may gently ask for the meaning of PDE, what the fuck does that mean?
Well, you don't have to be so rude. It's an abbreviation for Personalized Development Environment, coined by TJ, Neovim's marketing head.
You know, same old bullshit like speed, muscle memory, extension of your body/mind, spiritualism, nirvana, moksha and so on. Nothing serious. Jokes aside, the real reason was seeing how fast Prime was, in giving up on clojure.
Because I love my high functioning parens. I can lisp down, 100s of reasons why, but that's beyond the scope. This emotion is hosted on a solid and reliable foundation. I am sure, a dynamic and immutable relationship is what keeps us tied together so strongly. Please forgive me, for my love for punning (nil?). IYKYK.
Neovim is a professional's tool. You need to deserve it, earn its respect, you know? Like Thor and his hammer.
Or you can just install neovim and get started. At first sight, it doesn't look like anything more than a trap that you can never get out of (trust me you can :q!). And no, that was not my failed attempt at putting an emojee.
Create an init.lua
file in $HOME/.config/nvim
directory. This will be the entrypoint for your neovim configuration. It's similar to the main
method in a java/c/cpp projects, an entry-point for the program to run.
Go ahead and add a print("Hello, world!")
to the file. Now, when you run nvim
, you should see Hello, world!
at the bottom-left of your screen. Congratulations, for your first configured neovim instance.
Just like how each country needs good leaders to function properly, neovim is no different. You should define a leader and localleader according to your convenience. People usually choose <Space>
or ","
as their leader. I'll go ahead with ","
as that is what I am used to.
But wait, what is the purpose of the leaders, you ask? Well, the main reason is the "plugins"
. Plugin writers are not aware of how you have configured your editor. They can't arbitrarily setup keybindings in their plugins, as they may conflict with your bindings.
Neovim API exposes options via vim.g
, vim.o
, vim.opt
, vim.bo
and vim.wo
. We can control behaviour of Neovim by setting these options. vim.g
is used for global
scoped options. We can read more about them in Neovim's help text using :help vim.g
or :help vim.o
etc.
Let's set our globally scoped leader and localleader.
-- init.lua
vim.g.mapleader = ','
vim.g.maplocalleader = ','
NSFW: This article goes deeper into how leader/localleader is helpful.
Although, Neovim officially supports lua as its configuration language, we will use Fennel. Because, we love our parens. And also, we like to struggle and learn.
Fennel transpiles into lua, so we need a Neovim plugin to transpile our fennel files into lua. Olical's nfnl does exactly that. We will update our init.lua
to download nfnl
. We will also add nfnl's path to neovim's runtime path, so that it can find nfnl
plugin.
-- init.lua
-- ...
local nfnl_path = vim.fn.stdpath 'data' .. '/lazy/nfnl'
if not vim.uv.fs_stat(nfnl_path) then
print("Could not find nfnl, cloning new copy to", nfnl_path)
vim.fn.system({'git', 'clone', 'https://github.com/Olical/nfnl', nfnl_path})
end
vim.opt.rtp:prepend(nfnl_path)
require('nfnl').setup()
We define a local variable nfnl_path
. It holds the directory path where we will download nfnl
.
data
directory.
:help stdpath
to know more about standard paths.
/lazy/nfnl
to it. We'll store nfnl
here.vim.system(...)
instead. They are exactly the same.git clone
to download nfnl from its official github repository.nfnl_path
to the neovim's runtime path.nfnl
module and call setup
on it.Let us create a directory to store our fennel config files. And also a core.fnl
file inside that directory.
# Creates the directory
mkdir -p $HOME/.config/nvim/fnl/user
# Creates the file
touch $HOME/.config/nvim/fnl/user/core.fnl
Let's add a simple Hello, world!
print form in our core.fnl
.
;; fnl/user/core.fnl
(println "Hello, world! This is fennel config!")
When we restart our neovim instance, nothing happens. We should have seen a hello world message. We're missing a key nfnl
config.
nfnl
looks for a .nfnl.fnl
file in a directory for configuration about which files to compile and how. Create a .nfnl.fnl
file with empty config in $HOME/.config/nvim
directory.
echo {} > $HOME/.config/nvim/.nfnl.fnl
When we restart our instance again, we still don't see anything printed. Well, there are a couple of things pending.
nfnl
transpiles fnl
files on save by default.init.lua
, we haven't require
d the user.core
, so nvim doesn't know about it just yet.On opening core.fnl
, a prompt says that .nfnl.fnl
is not trusted. Press a
to allow (mark it as trusted). This is because nfnl
by default won't compile files in a directory unless we specifically allow it to. Once we allow and save the core.fnl
file, by using :write
command, a new file lua/user/core.lua
gets generated with transpiled lua code corresponding to the core.fnl
.
Let's require user/core
module in init.lua
-- init.lua
-- ...
-- append this to the bottom of init.lua file.
require('user.core')
Now, when you restart neovim, it greets you with:
Hop on to the next part.Hello, world! This is fennel config!
Published: 2024-01-26
Tagged: neovim clojure fennel lua text-editor