Compare commits

..

5 commits

Author SHA1 Message Date
2c3b306495
treewide: chores 2024-09-14 20:17:34 +08:00
92228a6538
mason: drop 2024-09-14 20:16:31 +08:00
0e8168454e
fixup! flake: use direnv 2024-09-14 19:27:49 +08:00
21e917990e
flake: remove package 2024-09-14 19:22:44 +08:00
de29df20b3
flake: use direnv 2024-09-14 19:22:32 +08:00
10 changed files with 48 additions and 75 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake

2
.gitignore vendored
View file

@ -5,3 +5,5 @@ result
result-*
lazy-lock.json
/.direnv

View file

@ -19,37 +19,19 @@
outputs = inputs:
inputs.flake-utils.lib.eachDefaultSystem (system: let
inherit (inputs.nixpkgs) lib;
pkgs = inputs.nixpkgs.legacyPackages.${system};
treefmtEval = inputs.treefmt-nix.lib.evalModule pkgs ./treefmt.nix;
runtimeDeps = with pkgs; [
# mason / tree-sitter
gcc
cargo
nodejs
# telescope
ripgrep
fd
];
src = lib.fileset.toSource {
fileset = lib.fileset.fileFilter (file: file.hasExt "lua") ./.;
root = ./.;
};
in {
### nix {run,shell,build}
packages.default = pkgs.callPackage ./package.nix {inherit runtimeDeps src;};
### nix fmt
formatter = treefmtEval.config.build.wrapper;
### nix flake check
checks = {formatting = treefmtEval.config.build.check inputs.self;};
checks.formatting = treefmtEval.config.build.check inputs.self;
### nix develop
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
devShells.default = pkgs.mkShellNoCC {
packages = with pkgs; [
lua-language-server
stylua
];
};

View file

@ -13,8 +13,11 @@ vim.opt.cursorline = true
vim.opt.number = true
vim.opt.relativenumber = true
-- Breakindent
vim.opt.breakindent = true
-- Mouse
vim.cmd([[
vim.cmd([[
aunmenu PopUp.How-to\ disable\ mouse
aunmenu PopUp.-1-
]])
@ -29,7 +32,10 @@ vim.opt.ignorecase = true
vim.opt.smartcase = true
-- System integration
vim.opt.clipboard = "unnamedplus"
-- https://github.com/nvim-lua/kickstart.nvim/blob/7201dc480134f41dd1be1f8f9b8f8470aac82a3b/init.lua#L113-L119
vim.schedule(function()
vim.opt.clipboard = "unnamedplus"
end)
vim.opt.swapfile = false
vim.opt.undofile = true
@ -42,12 +48,3 @@ vim.opt.tabstop = 2
vim.opt.laststatus = 3
vim.opt.showmode = false -- Handled by lualine
vim.opt.signcolumn = "yes" -- Prevents shifting
-- Neovide specific settings
if vim.g.neovide then
vim.opt.guifont = "monospace:h12"
-- Terminal-emulator-like copy/pasting
vim.api.nvim_set_keymap("n", "<C-C>", '"+y', { noremap = true, silent = true })
vim.api.nvim_set_keymap("n", "<C-V>", '"+p', { noremap = true, silent = true })
end

View file

@ -6,12 +6,19 @@ return {
"hrsh7th/cmp-cmdline",
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-path",
"saadparwaiz1/cmp_luasnip",
"neovim/nvim-lspconfig",
-- Snippets
"L3MON4D3/LuaSnip", -- snippet engine
"rafamadriz/friendly-snippets", -- pre-configured snippet texts
"saadparwaiz1/cmp_luasnip", -- nvim-cmp source
{
"L3MON4D3/LuaSnip", -- snippet engine
dependencies = {
"rafamadriz/friendly-snippets", -- pre-configured snippet texts
config = function()
require("luasnip.loaders.from_vscode").lazy_load()
end,
},
},
},
event = { "InsertEnter", "CmdlineEnter" },
opts = function()
@ -23,9 +30,6 @@ return {
return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil
end
require("mason").setup()
require("luasnip.loaders.from_vscode").lazy_load()
cmp.setup({
-- keybinds
-- see: https://github.com/hrsh7th/nvim-cmp/wiki/Example-mappings
@ -33,10 +37,8 @@ return {
["<Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_next_item()
elseif luasnip.expand_or_jumpable() then
luasnip.expand_or_jump()
elseif has_words_before() then
cmp.complete()
elseif luasnip.locally_jumpable(1) then
luasnip.jump(1)
else
fallback()
end
@ -45,14 +47,27 @@ return {
["<S-Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_prev_item()
elseif luasnip.jumpable(-1) then
elseif luasnip.locally_jumpable(-1) then
luasnip.jump(-1)
else
fallback()
end
end, { "i", "s" }),
["<CR>"] = cmp.mapping.confirm(),
["<CR>"] = cmp.mapping(function(fallback)
if cmp.visible() then
if luasnip.expandable() then
luasnip.expand()
else
cmp.confirm({
select = true,
})
end
else
fallback()
end
end),
["<Up>"] = cmp.mapping.select_prev_item({ behavior = "select" }),
["<Down>"] = cmp.mapping.select_next_item({ behavior = "select" }),
},

View file

@ -1,17 +1,8 @@
return {
"neovim/nvim-lspconfig",
dependencies = {
-- Portable package manager
"williamboman/mason.nvim",
"williamboman/mason-lspconfig.nvim",
},
init = function()
local capabilities = require("cmp_nvim_lsp").default_capabilities() -- needed for nvim-cmp
require("mason").setup()
require("mason-lspconfig").setup()
-- lspconfig
require("lspconfig").lua_ls.setup({
capabilities = capabilities,
})

View file

@ -15,7 +15,7 @@ return {
end,
keys = {
{
"<leader>lf",
"<leader>f",
function()
vim.lsp.buf.format()
end,

View file

@ -2,7 +2,10 @@ return {
"nvim-tree/nvim-tree.lua",
opts = {
view = {
adaptive_size = true,
side = "right",
},
renderer = {
symlink_destination = false, -- usually too long
},
},
init = function()

View file

@ -7,8 +7,8 @@ return {
opts = {},
cmd = "Telescope",
keys = {
{ "<leader>f", "<cmd>Telescope find_files<CR>", desc = "Find files" },
{ "<leader><leader>", "<cmd>Telescope oldfiles<CR>", desc = "Recent files" },
{ "<leader>sf", "<cmd>Telescope find_files<CR>", desc = "Find files" },
{ "<leader>sg", "<cmd>Telescope live_grep<CR>", desc = "Live grep" },
},
}

View file

@ -1,18 +0,0 @@
{
lib,
wrapNeovimUnstable,
neovim-unwrapped,
neovimUtils,
runtimeDeps ? null,
src ? null,
...
} @ args:
wrapNeovimUnstable neovim-unwrapped (neovimUtils.makeNeovimConfig args
// {
# FIXME: append instead of override the entire wrapperArgs
wrapperArgs = ["--prefix" "PATH" ":" "${lib.makeBinPath runtimeDeps}"];
luaRcContent = ''
vim.cmd [[set runtimepath^=${src}]]
${builtins.readFile "${src}/init.lua"}
'';
})