Skip to content

Commit

Permalink
feat: random shit
Browse files Browse the repository at this point in the history
  • Loading branch information
willruggiano committed Jul 31, 2023
1 parent a7abd9f commit 42dd389
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 24 deletions.
1 change: 1 addition & 0 deletions .nvim/mappings.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vim.keymap.set("n", "<space>h", require("telescope.builtin").help_tags, { desc = "Help" })
9 changes: 9 additions & 0 deletions neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@
# Nothing to see here.
};

# package = inputs'.neovim.packages.default.overrideAttrs (old: {
# patches = with pkgs; [
# (fetchpatch {
# url = "https://patch-diff.githubusercontent.com/raw/neovim/neovim/pull/20536.patch";
# hash = "sha256-9HqRpOByb+I6Rw5hmuZO1iwwrulkkNTEWv1bEczKTBM=";
# })
# ];
# });

# Tools to bake into the neovim environment.
# These tools are *appended* to neovim's PATH variable,
# such that if a tool is available locally (i.e. on the system PATH)
Expand Down
17 changes: 0 additions & 17 deletions plugins/bombadil/after/plugin/statusline.lua

This file was deleted.

6 changes: 5 additions & 1 deletion plugins/bombadil/plugin/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ vim.opt.belloff = "all"
vim.opt.breakindent = true
vim.opt.cindent = false
vim.opt.clipboard = "unnamedplus"
vim.opt.cmdheight = 1
vim.opt.cmdheight = 0
vim.opt.conceallevel = 3
vim.opt.cursorline = true
vim.opt.equalalways = false
Expand Down Expand Up @@ -35,13 +35,17 @@ vim.opt.hlsearch = true
vim.opt.ignorecase = true
vim.opt.inccommand = "split"
vim.opt.incsearch = true
vim.opt.laststatus = 0
vim.opt.linebreak = false
vim.opt.listchars = { space = "." }
vim.opt.modelines = 1
vim.opt.more = false
vim.opt.mouse = "n"
vim.opt.number = true
vim.opt.pumblend = 17
vim.opt.relativenumber = true
-- vim.opt.ruler = true
-- vim.opt.rulerformat = "%20(%t %y %l:%c%)"
vim.opt.scrolloff = 10
vim.opt.secure = true
vim.opt.sessionoptions = "buffers,curdir,folds,globals,tabpages,winpos,winsize"
Expand Down
6 changes: 0 additions & 6 deletions plugins/telescope.lua
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,6 @@ return function()

local nnoremap = require("bombadil.lib.keymap").nnoremap
local mappings = {
["<space>/"] = {
function()
require("telescope.builtin").help_tags()
end,
{ desc = "Help tags" },
},
["<space>b"] = {
function()
require("telescope.builtin").buffers()
Expand Down

0 comments on commit 42dd389

Please sign in to comment.