aboutsummaryrefslogtreecommitdiff
path: root/neovim/.config/nvim/init.lua
blob: ccad37a79b9425b10d32e4876a25e6e9157a1530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require("settings")
require("keybinds")
require("autocmd")
require("plugins")

-- https://sharksforarms.dev/posts/neovim-rust/
-- https://ka.codes/posts/nvim-lspinstall
-- https://rsdlt.github.io/posts/rust-nvim-ide-guide-walkthrough-development-debug/#why-neovim-for-rust-development

-- 1. italic error signs -> probably st 

-- Pretty print lua table
function _G.dump(...)
  local objects = vim.tbl_map(vim.inspect, { ... })
  print(unpack(objects))
end