mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-18 22:55:52 +05:30
More neovide + nvim config
This commit is contained in:
parent
58c8c7b87b
commit
126a2076cc
|
@ -45,7 +45,10 @@
|
|||
(editor == "nano")) then
|
||||
"exec " + term + " -e " + editor
|
||||
else
|
||||
editor);
|
||||
(if (editor == "neovide") then
|
||||
"neovide -- --listen /tmp/nvimsocket"
|
||||
else
|
||||
editor));
|
||||
};
|
||||
|
||||
# create patched nixpkgs
|
||||
|
|
|
@ -48,9 +48,6 @@ in
|
|||
|
||||
home.packages = (with pkgs-emacs; [
|
||||
emacs-lsp-booster
|
||||
nil
|
||||
nixfmt
|
||||
kotlin-language-server
|
||||
file
|
||||
wmctrl
|
||||
jshon
|
||||
|
|
|
@ -11,6 +11,8 @@ if vim.g.neovide then
|
|||
vim.g.neovide_transparency = 0.8
|
||||
vim.g.neovide_floating_blur_amount_x = 8.0
|
||||
vim.g.neovide_floating_blur_amount_y = 8.0
|
||||
vim.g.neovide_refresh_rate = 120
|
||||
vim.g.neovide_cursor_vfx_mode = "pixiedust"
|
||||
end
|
||||
|
||||
vim.g.neovide_scale_factor = 1.0
|
||||
|
|
|
@ -14,4 +14,19 @@ M.base46 = {
|
|||
-- },
|
||||
}
|
||||
|
||||
M.ui = {
|
||||
theme = "stylix",
|
||||
nvdash = {
|
||||
load_on_startup = true,
|
||||
buttons = {
|
||||
{ " Find File", "Spc .", "Telescope find_files" },
|
||||
{ " Nvimtree", "SPC e", "NvimTreeToggle" },
|
||||
{ " Projects ", "Spc p p", "Telescope workspaces" },
|
||||
{ " Vsplit ", "Spc w v", "vsplit" },
|
||||
{ " Split ", "Spc w s", "split" },
|
||||
{ " Help", "Spc c h", "NvCheatsheet" },
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
return M
|
||||
|
|
|
@ -4,7 +4,7 @@ require("nvchad.configs.lspconfig").defaults()
|
|||
local lspconfig = require "lspconfig"
|
||||
|
||||
-- EXAMPLE
|
||||
local servers = { "html", "cssls" }
|
||||
local servers = { "html", "cssls", "nil_ls", "marksman", "clangd", "pylsp", "ts_ls", "java_language_server", "dockerls", "docker_compose_language_service", "jsonls", "kotlin_language_server", "bashls", "yamlls", "sqls" }
|
||||
local nvlsp = require "nvchad.configs.lspconfig"
|
||||
|
||||
-- lsps with default config
|
||||
|
@ -15,6 +15,9 @@ for _, lsp in ipairs(servers) do
|
|||
capabilities = nvlsp.capabilities,
|
||||
}
|
||||
end
|
||||
lspconfig.gdscript.setup {
|
||||
cmd = { "ncat", "localhost", "6005"}
|
||||
}
|
||||
|
||||
-- configuring single server, example: typescript
|
||||
-- lspconfig.ts_ls.setup {
|
||||
|
|
|
@ -30,6 +30,9 @@ map("n", "<leader>gg", "<cmd>Neogit<cr>", { desc = "Neogit status buffer" })
|
|||
map("n", "<leader>c", "gcc", { desc = "Toggle Comment", remap = true })
|
||||
map("v", "<leader>c", "gc", { desc = "Toggle comment", remap = true })
|
||||
map("n", "<leader>pp", "<cmd>Telescope workspaces<cr>", { desc = "telescope workspaces" })
|
||||
map("n", "<leader>pf", "<cmd>Telescope find_files<cr>", { desc = "telescope find files" })
|
||||
map("n", "<A-w>", "<cmd>q<cr>", { desc = "quit" })
|
||||
map("n", "<leader>wd>", "<cmd>q<cr>", { desc = "quit" })
|
||||
map("n", "<leader>ws", "<cmd>split<cr>", { desc = "horizontal split" })
|
||||
map("n", "<leader>wS", "<cmd>split<cr>", { desc = "horizontal split" })
|
||||
map("n", "<leader>wv", "<cmd>vsplit<cr>", { desc = "vertical split" })
|
||||
|
|
|
@ -18,7 +18,7 @@ return {
|
|||
opts = {
|
||||
ensure_installed = {
|
||||
"vim", "lua", "vimdoc",
|
||||
"html", "css"
|
||||
"html", "css", 'gdscript'
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
@ -3,9 +3,28 @@
|
|||
{
|
||||
home.packages = with pkgs; [
|
||||
neovim
|
||||
neovim-remote
|
||||
neovide
|
||||
lua-language-server
|
||||
vscode-langservers-extracted
|
||||
nil
|
||||
clang-tools
|
||||
marksman
|
||||
python311Packages.python-lsp-server
|
||||
typescript-language-server
|
||||
java-language-server
|
||||
dockerfile-language-server-nodejs
|
||||
docker-compose-language-service
|
||||
kotlin-language-server
|
||||
bash-language-server
|
||||
yaml-language-server
|
||||
sqls
|
||||
nmap
|
||||
];
|
||||
programs.neovim = {
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
};
|
||||
home.file.".config/nvim".source = ./.;
|
||||
home.file.".config/nvim".recursive = true;
|
||||
home.file.".config/nvim/lua/themes/stylix.lua".source = config.lib.stylix.colors {
|
||||
|
|
Loading…
Reference in a new issue