Compare commits
No commits in common. "a83114d967e852acbb9b039e8d43dda3de452912" and "87219d0a5afc060bf4b3fb553075faa4fdcb2ea5" have entirely different histories.
a83114d967
...
87219d0a5a
3 changed files with 5 additions and 26 deletions
|
@ -44,13 +44,6 @@ in
|
||||||
"extensions.pocket.enabled" = false;
|
"extensions.pocket.enabled" = false;
|
||||||
"identity.fxaccounts.enabled" = false;
|
"identity.fxaccounts.enabled" = false;
|
||||||
};
|
};
|
||||||
userContent = ''
|
|
||||||
/* It's a dot not an interpunct */
|
|
||||||
.govuk-logo-dot {
|
|
||||||
fill: #fff !important;
|
|
||||||
transform: translate(0, 14.5px);
|
|
||||||
}
|
|
||||||
''
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
set -g default-terminal "tmux-256color"
|
|
||||||
|
|
||||||
# Configure the catppuccin plugin
|
|
||||||
set -g @catppuccin_flavor "mocha"
|
|
||||||
set -g @catppuccin_window_status_style "rounded"
|
|
||||||
|
|
||||||
# Make the status line pretty and add some modules
|
|
||||||
set -g status-right-length 100
|
|
||||||
set -g status-left-length 100
|
|
||||||
set -g status-left ""
|
|
||||||
set -g status-right "#{E:@catppuccin_status_application}"
|
|
|
@ -27,14 +27,10 @@ vim.keymap.set("n", "<leader>p", "<cmd>bp<CR>")
|
||||||
vim.keymap.set("n", "<Esc>", "<cmd>nohlsearch<CR>")
|
vim.keymap.set("n", "<Esc>", "<cmd>nohlsearch<CR>")
|
||||||
|
|
||||||
-- Bufferline (tabs)
|
-- Bufferline (tabs)
|
||||||
require("bufferline").setup {}
|
require("bufferline").setup{}
|
||||||
|
|
||||||
-- Lualine (status line)
|
-- Lualine (status line)
|
||||||
require("lualine").setup {
|
require("lualine").setup{}
|
||||||
options = {
|
|
||||||
section_separators = { left = '', right = '' }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
-- Telescope (anything search)
|
-- Telescope (anything search)
|
||||||
vim.keymap.set("n", "<leader>b", "<cmd>Telescope buffers<CR>")
|
vim.keymap.set("n", "<leader>b", "<cmd>Telescope buffers<CR>")
|
||||||
|
@ -57,7 +53,7 @@ vim.api.nvim_create_autocmd('LspAttach', {
|
||||||
desc = 'LSP actions',
|
desc = 'LSP actions',
|
||||||
callback = function()
|
callback = function()
|
||||||
local bufmap = function(mode, lhs, rhs)
|
local bufmap = function(mode, lhs, rhs)
|
||||||
local opts = { buffer = true }
|
local opts = {buffer = true}
|
||||||
vim.keymap.set(mode, lhs, rhs, opts)
|
vim.keymap.set(mode, lhs, rhs, opts)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -76,7 +72,7 @@ vim.api.nvim_create_autocmd('LspAttach', {
|
||||||
-- Jumps to the definition of the type symbol
|
-- Jumps to the definition of the type symbol
|
||||||
bufmap('n', 'go', vim.lsp.buf.type_definition)
|
bufmap('n', 'go', vim.lsp.buf.type_definition)
|
||||||
|
|
||||||
-- Lists all the references
|
-- Lists all the references
|
||||||
bufmap('n', 'gr', vim.lsp.buf.references)
|
bufmap('n', 'gr', vim.lsp.buf.references)
|
||||||
|
|
||||||
-- Displays a function's signature information
|
-- Displays a function's signature information
|
||||||
|
@ -95,3 +91,4 @@ vim.api.nvim_create_autocmd('LspAttach', {
|
||||||
bufmap('n', ']d', vim.diagnostic.goto_next)
|
bufmap('n', ']d', vim.diagnostic.goto_next)
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue